Skip to content

Commit 1cb410d

Browse files
committed
chore: use type import in tests
1 parent be2c70b commit 1cb410d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/fixture/types.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { expectTypeOf } from "expect-type";
22
import { describe, it } from "vitest";
33
import { EventHandler, EventHandlerRequest, defineEventHandler } from "h3";
4-
import { $Fetch } from "../..";
4+
import type { $Fetch } from "../..";
55
import { defineNitroConfig } from "../../src/config";
6-
import { Serialize, Simplify } from "../../src/types";
6+
import type { Serialize, Simplify } from "../../src/types";
77

88
interface TestResponse {
99
message: string;

0 commit comments

Comments
 (0)