| 123456789101112131415161718192021222324 |
- export type GoalConfigResponse = {
- list: GoalConfigItem[];
- };
- export type GoalConfigItem = {
- id: number;
- title: string;
- style: number;
- startAmount: number;
- targetAmount: number;
- startAt: string|null;
- endAt: string|null;
- isShowPercent: boolean;
- barColor: string;
- barBackgroundColor: string;
- barHeightPx: number;
- titleFontSizePx: number;
- titleFontColor: string;
- amountFontSizePx: number;
- amountFontColor: string;
- titleFontFamily: string|null;
- amountFontFamily: string|null;
- isActive: boolean;
- };
|