Skip to content

Commit 1d69f16

Browse files
authored
chore: satisfy use-import-type lint (biomejs) (freshframework#2389)
https://biomejs.dev/linter/rules/use-import-type/ From that page the argument is >The rule ensures that all imports used only as a type use a type-only import. It also groups inline type imports into a grouped import type.
1 parent 4ab600e commit 1d69f16

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/dev/manifest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ ${
8282
)
8383
.join("\n")
8484
}
85-
import { type Manifest } from "$fresh/server.ts";
85+
import type { Manifest } from "$fresh/server.ts";
8686
8787
const manifest = {
8888
routes: {

0 commit comments

Comments
 (0)