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.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;
+}