This commit is contained in:
icssoa 2025-05-27 01:17:57 +08:00 committed by icssoa
parent b8e0761159
commit e0be45758d
2 changed files with 2 additions and 2 deletions

View File

@ -457,7 +457,7 @@
interface RequestOptions {
url: string;
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | "HEAD" | "OPTIONS";
method?: 'OPTIONS' | 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'TRACE' | 'CONNECT';
data?: any;
params?: any;
header?: any;

View File

@ -390,7 +390,7 @@ async function createDescribe({ list, service }: { list: Eps.Entity[]; service:
interface RequestOptions {
url: string;
method?: "GET" | "POST" | "PUT" | "PATCH" | "DELETE" | "HEAD" | "OPTIONS";
method?: 'OPTIONS' | 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'TRACE' | 'CONNECT';
data?: any;
params?: any;
header?: any;