Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | import { EditorState } from "draft-js";
export type AnyAmountType = {
id: string;
title: string;
active: boolean;
amount: string;
description?:
| string
| {
enabled: false;
text: string;
};
min_max: {
enabled: boolean;
min: string;
max: string;
};
};
export type AmountType = {
id: string;
title: string;
amount: string;
active: boolean;
thumbnail?: string | File | any;
description?: {
enabled: boolean;
text: EditorState;
};
min_max?: {
enabled: boolean;
min: string;
max: string;
};
isDefault?: boolean;
};
export type QueryType = {
type: string;
conversion: string;
amount: string;
purchases: string; // Remove when Invoices slice is created
"entries sold": string; // for sweepstakes, every entries state will be removed
transactions: string;
visitors: string;
created: string;
status: string;
};
export type AmountsListType = AnyAmountType | AmountType;
export interface FundraisersState {
sortByKey: any;
query: QueryType;
sorting: string;
searchQuery: string;
names: {
type: string[];
conversion: number[];
amount: (string | number)[];
purchases: (string | number)[]; // Remove when Invoices slice is created
"entries sold": (string | number)[]; // for sweepstakes, every entries state will be removed
transactions: (string | number)[];
visitors: (string | number)[];
created: (string | number)[];
status: string[];
};
createFundraiser: {
success: boolean;
};
minibuilder: {
amounts: {
globalAmountId: string;
list: AmountsListType[];
};
};
watchListFilter: string;
}
|