/** * HTTP 请求方法常量 */ export const HttpMethod = { GET: 'GET', POST: 'POST', PUT: 'PUT', DELETE: 'DELETE', PATCH: 'PATCH', HEAD: 'HEAD', OPTIONS: 'OPTIONS', } as const; // 导出类型以供使用 export type HttpMethod = (typeof HttpMethod)[keyof typeof HttpMethod];