9 lines
169 B
TypeScript
9 lines
169 B
TypeScript
export type PurchaseFormValues = {
|
|
type: '1' | '2'
|
|
live: string
|
|
quota: number
|
|
expire: string
|
|
daily_limit: number
|
|
pay_type: 'wechat' | 'alipay' | 'balance'
|
|
}
|