10 lines
163 B
TypeScript
10 lines
163 B
TypeScript
|
/* SystemJS module definition */
|
||
|
declare const nodeModule: NodeModule;
|
||
|
interface NodeModule {
|
||
|
id: string;
|
||
|
}
|
||
|
interface Window {
|
||
|
process: any;
|
||
|
require: any;
|
||
|
}
|