mirror of
https://github.com/igorski/bitmappery.git
synced 2026-06-16 19:25:38 +02:00
12 lines
286 B
TypeScript
12 lines
286 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
// Declare modules for Vite-specific import types
|
|
declare module '*?worker' {
|
|
const workerConstructor: new () => Worker;
|
|
export default workerConstructor;
|
|
}
|
|
|
|
declare module '*?url' {
|
|
const url: string;
|
|
export default url;
|
|
} |