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 * ```
(specifier: string)
| 78 | * ``` |
| 79 | */ |
| 80 | resolve(specifier: string): string; |
| 81 | } |
| 82 | |
| 83 | /** Deno supports [User Timing Level 3](https://w3c.github.io/user-timing) |
no outgoing calls