mirror of
https://gitee.com/niucloud-team/niucloud.git
synced 2025-12-11 17:42:47 +00:00
16 lines
264 B
TypeScript
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
|
|
} |