123456789101112131415161718192021222324252627 |
- // Type definitions for SystemJS 1.6
- // Project: https://github.com/stealjs/systemjs
- // Definitions by: Steven Silvester <https://github.com/blink1073/>
- 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;
- }
|