Make 'ImportMeta' more minimal.

This commit is contained in:
Daniel Rosenwasser 2018-04-24 12:21:36 -07:00
parent 0feefab765
commit a55febda77

7
src/lib/es5.d.ts vendored
View File

@ -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 {