summaryrefslogtreecommitdiff
path: root/tools/ts_library_builder/testdata/globals.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2018-11-04 10:45:06 +1100
committerRyan Dahl <ry@tinyclouds.org>2018-11-04 05:56:49 -0800
commit765f229357587fb66dfe04d3c48d62c6aae9ce71 (patch)
treee309a1c918cf416d7e8c3de2cb16c14f737e6c20 /tools/ts_library_builder/testdata/globals.ts
parent2cf3a89f63c7bc7cfd9404f779b796c29c8e9598 (diff)
Improve robustness of lib builder.
Diffstat (limited to 'tools/ts_library_builder/testdata/globals.ts')
-rw-r--r--tools/ts_library_builder/testdata/globals.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/ts_library_builder/testdata/globals.ts b/tools/ts_library_builder/testdata/globals.ts
index 41a86bdf8..e80862025 100644
--- a/tools/ts_library_builder/testdata/globals.ts
+++ b/tools/ts_library_builder/testdata/globals.ts
@@ -1,6 +1,10 @@
import * as moduleC from "./moduleC";
+import * as moduleD from "./moduleD";
+import * as moduleE from "./moduleE";
// tslint:disable-next-line:no-any
const foobarbaz: any = {};
foobarbaz.bar = new moduleC.Bar();
foobarbaz.qat = moduleC.qat;
+foobarbaz.process = moduleE.process;
+foobarbaz.reprocess = moduleD.reprocess;