Files
frp-panel/www/types/api.ts
2024-01-22 22:09:08 +08:00

10 lines
128 B
TypeScript

export interface APIMetadata {
version: string
}
export interface BaseResponse {
code: number
msg: string
body?: any
}