mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
14 lines
266 B
TypeScript
14 lines
266 B
TypeScript
//Base module declarations
|
|
//Not required in Angular apps since it clashes with its typings.
|
|
declare var global: any;
|
|
|
|
interface NativeScriptRequire {
|
|
(id: string): any;
|
|
}
|
|
|
|
interface NativeScriptModule {
|
|
id: string;
|
|
filename: string;
|
|
exports: any;
|
|
}
|