interface ContextProviderProps {
    children?: ReactNode;
    csrfToken: string;
    dashboardCollectionsBarChart?: DashboardCollectionsBarChart;
    email?: string;
    featureFlags: FeatureFlags;
    key?: Key;
    quicksightPagePath?: string;
    ref?: LegacyRef<default>;
    roles?: { library?: string; role: string }[];
    settingUp?: boolean;
    showCircEventsDownload?: boolean;
    store?: Store<
        {
            api: CombinedState<{}, any, "api">;
            bookEditor: BookState;
            catalog: State;
            editor: CombinedState<State>;
        },
    >;
    support_contact_url?: string;
    tos_link_href?: string;
    tos_link_text?: string;
}

Hierarchy

Properties

children?: ReactNode
csrfToken: string
dashboardCollectionsBarChart?: DashboardCollectionsBarChart
email?: string
featureFlags: FeatureFlags
key?: Key
quicksightPagePath?: string
ref?: LegacyRef<default>
roles?: { library?: string; role: string }[]
settingUp?: boolean
showCircEventsDownload?: boolean
store?: Store<
    {
        api: CombinedState<{}, any, "api">;
        bookEditor: BookState;
        catalog: State;
        editor: CombinedState<State>;
    },
>
support_contact_url?: string
tos_link_href?: string
tos_link_text?: string