[improvement] CouponCell: tsx (#2791)

This commit is contained in:
neverland
2019-02-19 11:38:42 +08:00
committed by GitHub
parent 52a4b7eec9
commit 4e52510f85
8 changed files with 46 additions and 13 deletions
+14
View File
@@ -0,0 +1,14 @@
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;
};