interface ChangePasswordFormProps {
    changePassword?: (data: FormData) => Promise<void>;
    csrfToken: string;
    fetchError?: FetchErrorData;
    isFetching?: boolean;
    store?: Store<
        {
            api: CombinedState<{}, any, "api">;
            bookEditor: BookState;
            catalog: State;
            editor: CombinedState<State>;
        },
    >;
}

Hierarchy (View Summary)

Properties

changePassword?: (data: FormData) => Promise<void>
csrfToken: string
fetchError?: FetchErrorData
isFetching?: boolean
store?: Store<
    {
        api: CombinedState<{}, any, "api">;
        bookEditor: BookState;
        catalog: State;
        editor: CombinedState<State>;
    },
>