11 lines
258 B
TypeScript
11 lines
258 B
TypeScript
declare module "*.css";
|
|
export {};
|
|
declare global {
|
|
// typescript doesn't know worker.ts is a worker
|
|
function importScripts(...scripts: string[]): void;
|
|
|
|
// let files: Record<string, string>;
|
|
// let process: Process;
|
|
let newtMain: () => unknown;
|
|
}
|