interface SelfTestsCategoryProps {
    csrfToken: string;
    items: CollectionData[] | PatronAuthServiceData[];
    linkName: string;
    store: Store<
        {
            api: CombinedState<{}, any, "api">;
            bookEditor: BookState;
            catalog: State;
            editor: CombinedState<State>;
        },
    >;
    type: string;
}

Properties

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