aboutsummaryrefslogtreecommitdiff
path: root/decl/systemjs/systemjs.d.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-14 01:28:37 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-14 01:28:37 +0100
commit3d79aba854ccdbc79e8b7145ca99d6e0803e66bc (patch)
tree272c63f1ad104641eec390feca28f77146ebe465 /decl/systemjs/systemjs.d.ts
parent8ab5db6255ebea71dc6c839c2c7f00fa815a585e (diff)
downloadwallet-core-3d79aba854ccdbc79e8b7145ca99d6e0803e66bc.tar.xz
re-add decl files
Diffstat (limited to 'decl/systemjs/systemjs.d.ts')
-rw-r--r--decl/systemjs/systemjs.d.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/decl/systemjs/systemjs.d.ts b/decl/systemjs/systemjs.d.ts
new file mode 100644
index 000000000..4d84b399c
--- /dev/null
+++ b/decl/systemjs/systemjs.d.ts
@@ -0,0 +1,20 @@
+interface System {
+ import(name: string): Promise<any>;
+ defined: any;
+ amdDefine: () => void;
+ amdRequire: () => void;
+ baseURL: string;
+ paths: { [key: string]: string };
+ meta: { [key: string]: Object };
+ config: any;
+ newModule(obj: Object): any;
+ normalizeSync(name: string): string;
+ set(moduleName: string, module: any): void;
+}
+
+
+declare var System: System;
+
+declare module "systemjs" {
+ export = System;
+} \ No newline at end of file