summaryrefslogtreecommitdiff
path: root/tools/ts_library_builder/testdata/globals.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/ts_library_builder/testdata/globals.ts')
-rw-r--r--tools/ts_library_builder/testdata/globals.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/ts_library_builder/testdata/globals.ts b/tools/ts_library_builder/testdata/globals.ts
deleted file mode 100644
index 4fff7e8f9..000000000
--- a/tools/ts_library_builder/testdata/globals.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import * as moduleC from "./moduleC";
-import * as moduleD from "./moduleD";
-import * as moduleE from "./moduleE";
-
-const foobarbaz: any = {};
-foobarbaz.bar = new moduleC.Bar();
-foobarbaz.qat = moduleC.qat;
-foobarbaz.process = moduleE.process;
-foobarbaz.reprocess = moduleD.reprocess;
-foobarbaz.Bar = moduleC.Bar;
-export type Bar = moduleC.Bar;
-export interface FizzBuzz {
- foo: string;
- bar: number;
-}