interface SelfTestsOwnProps {
    csrfToken?: string;
    item?: ServiceData;
    sortByCollection: boolean;
    store?: Store<
        {
            api: CombinedState<{}, any, "api">;
            bookEditor: BookState;
            catalog: State;
            editor: CombinedState<State>;
        },
    >;
    type: string;
}

Hierarchy (View Summary)

Properties

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