interface EditableConfigListOwnProps {
    csrfToken: string;
    editOrCreate?: string;
    identifier?: string;
    settingUp?: boolean;
    store?: Store<
        {
            api: CombinedState<{}, any, "api">;
            bookEditor: BookState;
            catalog: State;
            editor: CombinedState<State>;
        },
    >;
}

Hierarchy (View Summary)

Properties

csrfToken: string
editOrCreate?: string
identifier?: string
settingUp?: boolean
store?: Store<
    {
        api: CombinedState<{}, any, "api">;
        bookEditor: BookState;
        catalog: State;
        editor: CombinedState<State>;
    },
>