aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/globals.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/dev-tools-pages/ts/globals.d.ts')
-rw-r--r--packages/dev-tools-pages/ts/globals.d.ts24
1 files changed, 0 insertions, 24 deletions
diff --git a/packages/dev-tools-pages/ts/globals.d.ts b/packages/dev-tools-pages/ts/globals.d.ts
deleted file mode 100644
index bfe13ee71..000000000
--- a/packages/dev-tools-pages/ts/globals.d.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-declare module 'whatwg-fetch';
-declare module 'react-document-title';
-declare module 'highlight.js/lib/highlight';
-declare module 'highlight.js/lib/languages/javascript';
-declare module 'highlight.js/lib/languages/json';
-
-declare var System: any;
-
-declare module '*.json' {
- const json: any;
- /* tslint:disable */
- export default json;
- /* tslint:enable */
-}
-
-declare module '*.css' {
- const css: any;
- export default css;
-}
-
-declare module '*.svg' {
- const svg: any;
- export default svg;
-}