Files
FileProxy/types.ts
2025-01-27 17:46:41 +08:00

20 lines
287 B
TypeScript

export interface IrequestData {
Request: {
Mode: string
URL: string
Headers?: any
Body?: string
}
Response?: {
StatusCode?: number
Headers: any
Body?: string
}
Processed?: boolean
}
export interface Iconfig {
path: string
deleteAfter: number
}