diff options
Diffstat (limited to 'tests/specs/check/export_equals_declaration_file/other.d.ts')
-rw-r--r-- | tests/specs/check/export_equals_declaration_file/other.d.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/specs/check/export_equals_declaration_file/other.d.ts b/tests/specs/check/export_equals_declaration_file/other.d.ts new file mode 100644 index 000000000..5e1274fa5 --- /dev/null +++ b/tests/specs/check/export_equals_declaration_file/other.d.ts @@ -0,0 +1,9 @@ +export = other; + +declare function other(): string; + +declare namespace other { + interface Attributes { + [attr: string]: string; + } +} |