ArgType 변경

This commit is contained in:
2023-08-06 13:39:22 +00:00
parent 3256620276
commit 691f5e79ce
3 changed files with 47 additions and 16 deletions
+3 -1
View File
@@ -1,5 +1,7 @@
export type HttpMethod = 'get' | 'post' | 'put' | 'delete' | 'patch' | 'head';
export type RawArgType = Record<string, unknown> | Record<string, unknown>[] | undefined;
export type RawArgType = {
[key: string]: unknown;
} | undefined;
export interface BasicAPICallT<