Files
newt/playground/src/global.d.ts

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;
}