interface SelfTestsProps {
    children?: ReactNode;
    csrfToken?: string;
    getSelfTests?: () => Promise<SelfTestsData>;
    isFetching?: boolean;
    item?: ServiceData;
    key?: Key;
    ref?: LegacyRef<SelfTestsProps>;
    runSelfTests?: () => Promise<void>;
    sortByCollection: boolean;
    store?: Store<
        {
            api: CombinedState<{}, any, "api">;
            bookEditor: BookState;
            catalog: State;
            editor: CombinedState<State>;
        },
    >;
    type: string;
}

Hierarchy (View Summary)

Properties

children?: ReactNode
csrfToken?: string
getSelfTests?: () => Promise<SelfTestsData>
isFetching?: boolean
key?: Key
ref?: LegacyRef<SelfTestsProps>
runSelfTests?: () => Promise<void>
sortByCollection: boolean
store?: Store<
    {
        api: CombinedState<{}, any, "api">;
        bookEditor: BookState;
        catalog: State;
        editor: CombinedState<State>;
    },
>
type: string