Files
DefinitelyTyped/systemjs/systemjs-0.18.4.d.ts
Giedrius Grabauskas 66999f382f Updated: SystemJS v0.19.29 definitions (#9525)
* Renamed systemjs definitions file old version file.

* Renamed old systemjs tests file.

* Init systemjs definitions file 0.19.29 file added.

* Init systemjs tests file 0.19.29 added.

* normalizedParentName changed to string in SystemJS

* Optimized code ant fixed some any

* Fixed old version naming.

* Removed `v` from version.

* Updated package name in definitions file.

* Added loads list.

* Update systemjs.d.ts

* Added old authors.
2016-06-08 19:14:55 +09:00

23 lines
613 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
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;
}
declare var System: System;
declare module "systemjs" {
export = System;
}