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 | import { NiceModalStore } from "@ebay/nice-modal-react";
import { IAccessControlState } from "@redux/slices/accessControl/types";
import {
EnterprisesState,
SettingsState,
TransactionRiskProfile,
} from "@redux/slices/acquirer/types";
import { AnalyticsState } from "@redux/slices/analytics/types";
import { AppState } from "@redux/slices/app/types";
import { AccountsState, InitialState } from "@redux/slices/auth/types";
import { VerificationState } from "@redux/slices/auth/verification";
import { CartState } from "@redux/slices/cart/CartState";
import { CheckoutState } from "@redux/slices/checkout/types";
import { Conversation } from "@redux/slices/conversations/types";
import { CustomersState } from "@redux/slices/customers/types";
import { DynamicFilterState } from "@redux/slices/dynamicFilterSlice/types";
import {
EnterpriseSettingsState,
MerchantState,
} from "@redux/slices/enterprise/types";
import { FundraisersState } from "@redux/slices/fundraisers/types";
import { MerchantPreviewState } from "@redux/slices/merchantPreview";
import { Product } from "@redux/slices/products";
import { SearchSliceState } from "@redux/slices/search/types";
import { SweepstakesState } from "@redux/slices/sweepstakes/types";
import { TableFilterState } from "@redux/slices/tableFilters/types";
import { TransactionsState } from "@redux/slices/merchantFilters/types";
import { UnreadConversationSignProp } from "@redux/slices/unreadConversationSign";
import { SortSliceState } from "@redux/types/sort";
import { Changelog } from "@redux/slices/changelog/types";
import { UploadProgress } from "@redux/slices/uploadProgressSlice/types";
import { OnboardingWizardState } from "@redux/slices/onboardingWizard/types";
export interface RootState {
app: AppState;
verification: VerificationState;
transactions: TransactionsState;
customers: CustomersState;
fundraisers: FundraisersState;
sweepstakes: SweepstakesState;
merchants: MerchantState;
enterprises: EnterprisesState;
auth: InitialState;
acquirerSettings: SettingsState;
enterpriseSettings: EnterpriseSettingsState;
accounts: AccountsState;
cart: CartState;
search: SearchSliceState;
sort: SortSliceState;
filter: DynamicFilterState;
checkout: CheckoutState;
product: Product;
modals: NiceModalStore;
analytics: AnalyticsState;
transactionRiskProfile: TransactionRiskProfile;
conversations: Conversation;
accessControl: IAccessControlState;
merchantPreview: MerchantPreviewState;
unreadConversationSign: UnreadConversationSignProp;
tableFilters: TableFilterState;
merchantFilters: TransactionsState;
changelog: Changelog;
uploadProgress: UploadProgress;
onboardingWizard: OnboardingWizardState;
}
|