Skip to content

Commit

Permalink
refactor: organize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mashabow committed Sep 24, 2024
1 parent 6fb53fa commit 13a7012
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { type RequestHandlerOptions, type ResponseResolver, http } from "msw";
import type { LowerHttpMethod } from "aspida";
import { http, type RequestHandlerOptions, type ResponseResolver } from "msw";
import type {
$LowerHttpMethod,
ApiInstance,
Api,
ApiInstance,
Endpoint,
TypedHttp,
} from "./type";
Expand Down
2 changes: 1 addition & 1 deletion test/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import aspida from "@aspida/fetch";
import { HttpResponse } from "msw";
import { setupServer } from "msw/node";
import { afterAll, afterEach, beforeAll, describe, expect, test } from "vitest";
import { HttpResponse } from "msw";
import { createTypedHttp } from "../src";
import type { Api } from "../src/type";
import petStoreApi from "./generated-api/$api";
Expand Down

0 comments on commit 13a7012

Please sign in to comment.