Files
DefinitelyTyped/systemjs/index.d.ts
2016-06-20 14:15:13 -07:00

22 lines
609 B
TypeScript

// Type definitions for System.js 0.18.4
// Project: https://github.com/systemjs/systemjs
// Definitions by: Ludovic HENIN <https://github.com/ludohenin/>, Nathan Walker <https://github.com/NathanWalker/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare var System: System;
export = System;
export as namespace System;
interface System {
import(name: string): any;
defined: any;
amdDefine: () => void;
amdRequire: () => void;
baseURL: string;
paths: { [key: string]: string };
meta: { [key: string]: Object };
config: any;
_nodeRequire: (name: string) => any;
}