interface AdditionalContentProps<T, U> {
    csrfToken?: string;
    item?: U;
    store?: Store<
        {
            api: CombinedState<{}, any, "api">;
            bookEditor: BookState;
            catalog: State;
            editor: CombinedState<State>;
        },
    >;
    type?: string;
}

Type Parameters

  • T
  • U

Properties

csrfToken?: string
item?: U
store?: Store<
    {
        api: CombinedState<{}, any, "api">;
        bookEditor: BookState;
        catalog: State;
        editor: CombinedState<State>;
    },
>
type?: string