mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-12-24 11:51:06 +08:00
10 lines
128 B
TypeScript
10 lines
128 B
TypeScript
export interface APIMetadata {
|
|
version: string
|
|
}
|
|
|
|
export interface BaseResponse {
|
|
code: number
|
|
msg: string
|
|
body?: any
|
|
}
|