You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
428 B
TypeScript
26 lines
428 B
TypeScript
declare namespace API {
|
|
// 分页模型
|
|
interface Pagination {
|
|
size?: number
|
|
current?: number
|
|
total?: number
|
|
}
|
|
|
|
// 时间模型
|
|
interface TimeInfo {
|
|
createdAt?: string
|
|
updatedAt?: string
|
|
}
|
|
|
|
// 基础ID
|
|
interface BaseID {
|
|
id?: string
|
|
}
|
|
|
|
// 验证码请求
|
|
interface CaptchaReq {
|
|
captchaId: string
|
|
captcha: string
|
|
}
|
|
}
|