@mieweb/wikigdrive
Version:
Google Drive to MarkDown synchronization
25 lines • 762 B
TypeScript
declare global {
interface ImportMeta {
/** A flag that indicates if the current module is the main module that was
* called when starting the program under Deno.
*
* ```ts
* if (import.meta.main) {
* // this was loaded as the main module, maybe do some bootstrapping
* }
* ```
*/
main: boolean;
/** A function that returns resolved specifier as if it would be imported
* using `import(specifier)`.
*
* ```ts
* console.log(import.meta.resolve("./foo.js"));
* // file:///dev/foo.js
* ```
*/
resolve(specifier: string): string;
}
}
export {};
//# sourceMappingURL=_dnt.polyfills.d.ts.map