aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/custom-typings.d.ts
diff options
context:
space:
mode:
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;