summaryrefslogtreecommitdiff
path: root/tools/ts_library_builder/testdata
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2019-03-25 05:23:24 +0100
committerRyan Dahl <ry@tinyclouds.org>2019-03-25 00:23:24 -0400
commit5ae78eb1de378f04d0b9d54842bcb898053467d6 (patch)
tree4d0d6a97e6af1f3c3a0a70f1ebe34bdd9d32ac3e /tools/ts_library_builder/testdata
parent3cc90d9bcf4be58bf88b433ae410f42fa4ad69c7 (diff)
Update ts_library_builder (#1920)
Diffstat (limited to 'tools/ts_library_builder/testdata')
-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 c6c6f9476..4fff7e8f9 100644
--- a/tools/ts_library_builder/testdata/globals.ts
+++ b/tools/ts_library_builder/testdata/globals.ts
@@ -9,3 +9,7 @@ foobarbaz.process = moduleE.process;
foobarbaz.reprocess = moduleD.reprocess;
foobarbaz.Bar = moduleC.Bar;
export type Bar = moduleC.Bar;
+export interface FizzBuzz {
+ foo: string;
+ bar: number;
+}