From e42a94116011f6e985ef4c334ca0f57e6adcacf9 Mon Sep 17 00:00:00 2001 From: Miguelangel Cabrera Date: Tue, 9 Aug 2016 18:46:41 -0300 Subject: [PATCH] Remove typings.d.ts #1604 --- addon/ng2/blueprints/ng2/files/__path__/test.ts | 8 ++++++++ addon/ng2/blueprints/ng2/files/__path__/typings.d.ts | 8 -------- 2 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 addon/ng2/blueprints/ng2/files/__path__/typings.d.ts diff --git a/addon/ng2/blueprints/ng2/files/__path__/test.ts b/addon/ng2/blueprints/ng2/files/__path__/test.ts index cef85f112c20..1b01dc6ebf1b 100644 --- a/addon/ng2/blueprints/ng2/files/__path__/test.ts +++ b/addon/ng2/blueprints/ng2/files/__path__/test.ts @@ -14,6 +14,14 @@ import 'zone.js/dist/sync-test'; // Unfortunately there's no typing for the `__karma__` variable. Just declare it as any. declare var __karma__: any; +// Typings reference file, see links for more information +// https://github.com/typings/typings +// https://www.typescriptlang.org/docs/handbook/writing-declaration-files.html + +declare var System: any; +declare var module: { id: string }; +declare var require: any; + // Prevent Karma from running prematurely. __karma__.loaded = function () {}; diff --git a/addon/ng2/blueprints/ng2/files/__path__/typings.d.ts b/addon/ng2/blueprints/ng2/files/__path__/typings.d.ts deleted file mode 100644 index dc0276ded1cd..000000000000 --- a/addon/ng2/blueprints/ng2/files/__path__/typings.d.ts +++ /dev/null @@ -1,8 +0,0 @@ -// Typings reference file, see links for more information -// https://github.com/typings/typings -// https://www.typescriptlang.org/docs/handbook/writing-declaration-files.html - -declare var System: any; -declare var module: { id: string }; -declare var require: any; -