diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-09-17 18:26:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-17 18:26:23 +0100 |
commit | a14e9f55b4efc39689e1cc76b44bc6c1be51efa5 (patch) | |
tree | 0a62a88e21eb6647157fc1f948008793b67bf0e9 /tests/testdata | |
parent | 915b73571c40601b7f79fa4ee0f3035982e23b7f (diff) |
feat(fmt): sort type-only named import/exports last (#25690)
Closes #22583
Diffstat (limited to 'tests/testdata')
-rw-r--r-- | tests/testdata/repl/import_type.ts | 2 | ||||
-rw-r--r-- | tests/testdata/run/import_type.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/testdata/repl/import_type.ts b/tests/testdata/repl/import_type.ts index 851ebad86..0bee21747 100644 --- a/tests/testdata/repl/import_type.ts +++ b/tests/testdata/repl/import_type.ts @@ -1,4 +1,4 @@ -import { type B, create } from "./subdir/export_types.ts"; +import { create, type B } from "./subdir/export_types.ts"; const b: B = create(); diff --git a/tests/testdata/run/import_type.ts b/tests/testdata/run/import_type.ts index 22c639cbc..65e140cda 100644 --- a/tests/testdata/run/import_type.ts +++ b/tests/testdata/run/import_type.ts @@ -1,4 +1,4 @@ -import { type B, create } from "../subdir/export_types.ts"; +import { create, type B } from "../subdir/export_types.ts"; const b: B = create(); |