Skip to content

Commit

Permalink
fix: fix type error in index.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
JOU-amjs committed May 15, 2023
1 parent b9bde5d commit e9e06a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { AlovaRequestAdapter, Method, RequestBody } from 'alova';
import { AlovaRequestAdapter, Method } from 'alova';

interface MockServerRequest {
headers: Record<string, any>;
query: Record<string, any>;
params: Record<string, any>;
data?: RequestBody;
data: Record<string, any>;
}

interface ResponseHeaders {
Expand Down

0 comments on commit e9e06a4

Please sign in to comment.