mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
15 lines
263 B
TypeScript
15 lines
263 B
TypeScript
export type Coupon = {
|
|
id: string;
|
|
name: string;
|
|
endAt: number;
|
|
value: number;
|
|
startAt: number;
|
|
reason?: string;
|
|
discount?: number;
|
|
unitDesc?: string;
|
|
condition?: string;
|
|
valueDesc?: string;
|
|
description: string;
|
|
denominations?: number;
|
|
};
|