test_lgq/web/types/global.d.ts
2024-01-24 17:36:08 +08:00

16 lines
264 B
TypeScript

declare interface AnyObject {
[key: string]: any;
}
declare interface responseResult {
code: number,
data: any,
msg: string
}
interface requestMobileParam {
mobile: string,
captcha_code: string,
captcha_key: string,
type: string
}