summaryrefslogtreecommitdiff
path: root/deno_typescript/globals.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'deno_typescript/globals.d.ts')
-rw-r--r--deno_typescript/globals.d.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/deno_typescript/globals.d.ts b/deno_typescript/globals.d.ts
deleted file mode 100644
index b087c5552..000000000
--- a/deno_typescript/globals.d.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-
-// This scopes the `ts` namespace globally, which is where it exists at runtime
-// when building Deno, but the `typescript/lib/typescript.d.ts` is defined as a
-// module
-
-import * as _ts from "typescript";
-
-declare global {
- namespace ts {
- export = _ts;
- }
-}