systemjs.d.ts 570 B

123456789101112131415161718192021
  1. // Type definitions for System.js 0.18.4
  2. // Project: https://github.com/systemjs/systemjs
  3. // Definitions by: Ludovic HENIN <https://github.com/ludohenin/>, Nathan Walker <https://github.com/NathanWalker/>
  4. // Definitions: https://github.com/borisyankov/DefinitelyTyped
  5. interface System {
  6. import(name: string): any;
  7. defined: any;
  8. amdDefine: () => void;
  9. amdRequire: () => void;
  10. baseURL: string;
  11. paths: { [key: string]: string };
  12. meta: { [key: string]: Object };
  13. config: any;
  14. }
  15. declare var System: System;
  16. declare module "systemjs" {
  17. export = System;
  18. }