diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-05-13 14:18:37 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-05-13 14:23:11 +0200 |
commit | 230809efa1e7e81ce60cd65f8b398f01a27d525b (patch) | |
tree | ddbd0cee82bd2d35d01a1307a2905a467f51ca6b /client/typings | |
parent | bc503c2a62dcf9aed6b8d90b68f0f27a7755ac01 (diff) | |
download | PeerTube-230809efa1e7e81ce60cd65f8b398f01a27d525b.tar.gz PeerTube-230809efa1e7e81ce60cd65f8b398f01a27d525b.tar.zst PeerTube-230809efa1e7e81ce60cd65f8b398f01a27d525b.zip |
Update to Angular RC 1
Diffstat (limited to 'client/typings')
-rw-r--r-- | client/typings/typings.d.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/client/typings/typings.d.ts b/client/typings/typings.d.ts new file mode 100644 index 000000000..579c9a586 --- /dev/null +++ b/client/typings/typings.d.ts | |||
@@ -0,0 +1,13 @@ | |||
1 | /** | ||
2 | * Declares the 'commonjs' format module object that identifies the "module id" for the current module. | ||
3 | * Set a component's `moduleId` metadata property to `module.id` for module-relative urls | ||
4 | * when the generated module format is 'commonjs'. | ||
5 | */ | ||
6 | declare var module: {id: string}; | ||
7 | |||
8 | /** | ||
9 | * Declares the 'system' format string that identifies the "module id" for the current module. | ||
10 | * Set a component's `moduleId` metadata property to `__moduleName` for module-relative urls | ||
11 | * when the generated module format is 'system'. | ||
12 | */ | ||
13 | declare var __moduleName: string; | ||