mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-15 03:23:08 -06:00
Make 'ImportMeta' more minimal.
This commit is contained in:
parent
0feefab765
commit
a55febda77
7
src/lib/es5.d.ts
vendored
7
src/lib/es5.d.ts
vendored
@ -505,8 +505,13 @@ interface TemplateStringsArray extends ReadonlyArray<string> {
|
||||
readonly raw: ReadonlyArray<string>;
|
||||
}
|
||||
|
||||
/**
|
||||
* The type of `import.meta`.
|
||||
*
|
||||
* If you need to declare that a given property exists on `import.meta`,
|
||||
* this type may be augmented via interface merging.
|
||||
*/
|
||||
interface ImportMeta {
|
||||
[propertyName: string]: any;
|
||||
}
|
||||
|
||||
interface Math {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user