diff options
Diffstat (limited to 'cli/tests/testdata/check/export_equals_declaration_file')
3 files changed, 0 insertions, 18 deletions
diff --git a/cli/tests/testdata/check/export_equals_declaration_file/main.ts b/cli/tests/testdata/check/export_equals_declaration_file/main.ts deleted file mode 100644 index e20a735d5..000000000 --- a/cli/tests/testdata/check/export_equals_declaration_file/main.ts +++ /dev/null @@ -1,6 +0,0 @@ -// @deno-types="./other.d.ts" -import Test, { type Attributes } from "./other.js"; - -const other: Attributes = {}; -console.log(Test()); -console.log(other); diff --git a/cli/tests/testdata/check/export_equals_declaration_file/other.d.ts b/cli/tests/testdata/check/export_equals_declaration_file/other.d.ts deleted file mode 100644 index 5e1274fa5..000000000 --- a/cli/tests/testdata/check/export_equals_declaration_file/other.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -export = other; - -declare function other(): string; - -declare namespace other { - interface Attributes { - [attr: string]: string; - } -} diff --git a/cli/tests/testdata/check/export_equals_declaration_file/other.js b/cli/tests/testdata/check/export_equals_declaration_file/other.js deleted file mode 100644 index f66c03162..000000000 --- a/cli/tests/testdata/check/export_equals_declaration_file/other.js +++ /dev/null @@ -1,3 +0,0 @@ -export default function other() { - return "test"; -} |