/// // web worker declare module '*?worker' { const workerConstructor: { new (): Worker } export default workerConstructor } declare module '*?inline' { const inlineStr: string export default inlineStr } // import.meta interface ImportMetaEnv { [key: string]: string | boolean | undefined } interface ImportMeta { readonly env: ImportMetaEnv }