123456789101112131415161718192021222324252627 |
- interface npmObject {
- name: string;
- fileUrl: string;
- }
- interface System {
- import(module: string): Promise<any>;
- delete(module: string): boolean;
- npm: { [key: string]: npmObject };
- }
- declare var System: System;
- declare module 'System' {
- export = System;
- }
|