Files
newt/playground/src/global.d.ts
2025-07-18 20:47:45 -04:00

12 lines
297 B
TypeScript

/// <reference types="vite/client" />
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 Main_main: () => unknown;
}