Skip to content

Commit

Permalink
chore: use type import in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Mar 8, 2024
1 parent be2c70b commit 1cb410d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/fixture/types.ts
@@ -1,9 +1,9 @@
import { expectTypeOf } from "expect-type";
import { describe, it } from "vitest";
import { EventHandler, EventHandlerRequest, defineEventHandler } from "h3";
import { $Fetch } from "../..";
import type { $Fetch } from "../..";
import { defineNitroConfig } from "../../src/config";
import { Serialize, Simplify } from "../../src/types";
import type { Serialize, Simplify } from "../../src/types";

interface TestResponse {
message: string;
Expand Down

0 comments on commit 1cb410d

Please sign in to comment.