diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2019-08-23 02:05:01 +1000 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-08-22 12:05:01 -0400 |
| commit | 6c7d337960b3745a7b614a18150862279ef1c942 (patch) | |
| tree | ab2d432d80c1bb2bfdc9d77de1644d3b1e4fa4b7 /tests/type_definitions/bar.d.ts | |
| parent | bdc97b3976786bb744a27e59b0f4f28554a682df (diff) | |
Support .d.ts files (#2746)
Fixes #1432
Diffstat (limited to 'tests/type_definitions/bar.d.ts')
| -rw-r--r-- | tests/type_definitions/bar.d.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/type_definitions/bar.d.ts b/tests/type_definitions/bar.d.ts new file mode 100644 index 000000000..d43335dbb --- /dev/null +++ b/tests/type_definitions/bar.d.ts @@ -0,0 +1,7 @@ +/// <reference types="baz" /> + +declare namespace bar { + export class Bar { + baz: string; + } +} |
