aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/custom-typings.d.ts
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-06-11 15:19:43 +0200
committerChocobozzz <florian.bigard@gmail.com>2017-06-11 15:19:43 +0200
commit1840c2f7c91f5f89602a3683d85b0a9df1454855 (patch)
tree7efc223222e2d318abfaef0839a79e23be727cea /client/src/custom-typings.d.ts
parent8635a2c70cc24a4c52558162ac058de95750271f (diff)
downloadPeerTube-1840c2f7c91f5f89602a3683d85b0a9df1454855.tar.gz
PeerTube-1840c2f7c91f5f89602a3683d85b0a9df1454855.tar.zst
PeerTube-1840c2f7c91f5f89602a3683d85b0a9df1454855.zip
Update webpack stack
Diffstat (limited to 'client/src/custom-typings.d.ts')
-rw-r--r--client/src/custom-typings.d.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/src/custom-typings.d.ts b/client/src/custom-typings.d.ts
index 621a416b4..67e069cc6 100644
--- a/client/src/custom-typings.d.ts
+++ b/client/src/custom-typings.d.ts
@@ -58,6 +58,7 @@ declare module 'modern-lru' {
58 58
59// Extra variables that live on Global that will be replaced by webpack DefinePlugin 59// Extra variables that live on Global that will be replaced by webpack DefinePlugin
60declare var ENV: string; 60declare var ENV: string;
61declare var API_URL: string;
61declare var HMR: boolean; 62declare var HMR: boolean;
62declare var System: SystemJS; 63declare var System: SystemJS;
63 64
@@ -67,6 +68,7 @@ interface SystemJS {
67 68
68interface GlobalEnvironment { 69interface GlobalEnvironment {
69 ENV: string; 70 ENV: string;
71 API_URL: string;
70 HMR: boolean; 72 HMR: boolean;
71 SystemJS: SystemJS; 73 SystemJS: SystemJS;
72 System: SystemJS; 74 System: SystemJS;