niucloud-admin/web/types/global.d.ts
全栈小学生 0e47055ccb v1.0.0-beta.1
2023-04-15 17:12:49 +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
}