interface ResetAdobeIdProps {
    children?: ReactNode;
    csrfToken?: string;
    fetchError?: FetchErrorData;
    key?: Key;
    library: string;
    patron?: PatronData;
    ref?: LegacyRef<ResetAdobeIdProps>;
    resetAdobeId?: (data: FormData, library: string) => Promise<void>;
    responseBody?: string;
    store?: Store<
        {
            api: CombinedState<{}, any, "api">;
            bookEditor: BookState;
            catalog: State;
            editor: CombinedState<State>;
        },
    >;
}

Hierarchy (View Summary)

Properties

children?: ReactNode
csrfToken?: string
fetchError?: FetchErrorData
key?: Key
library: string
patron?: PatronData
ref?: LegacyRef<ResetAdobeIdProps>
resetAdobeId?: (data: FormData, library: string) => Promise<void>
responseBody?: string
store?: Store<
    {
        api: CombinedState<{}, any, "api">;
        bookEditor: BookState;
        catalog: State;
        editor: CombinedState<State>;
    },
>