| 12345678910111213141516171819202122232425262728293031323334 |
- export type CrewWidgetConfigResponse = {
- list: CrewWidgetConfigItem[];
- };
- export type CrewWidgetConfigItem = {
- id: number;
- title: string;
- theme: number;
- period: number;
- startAt: string|null;
- endAt: string|null;
- maxDisplayCount: number;
- isShowAmount: boolean;
- isShowDonationCount: boolean;
- isShowContributionRate: boolean;
- isShowMemberIcon: boolean;
- isActive: boolean;
- bgColor: string;
- titleFontFamily: string|null;
- titleFontSizePx: number;
- titleFontColor: string;
- rank1FontFamily: string|null;
- rank1FontSizePx: number;
- rank1FontColor: string;
- rank2FontFamily: string|null;
- rank2FontSizePx: number;
- rank2FontColor: string;
- rank3FontFamily: string|null;
- rank3FontSizePx: number;
- rank3FontColor: string;
- rowFontFamily: string|null;
- rowFontSizePx: number;
- rowFontColor: string;
- };
|