@thepalaceproject/circulation-admin
    Preparing search index...
    interface DiagnosticsTabContainerProps {
        children?: ReactNode;
        class?: string;
        csrfToken?: string;
        diagnostics?: DiagnosticsData;
        fetchDiagnostics: () => Promise<any>;
        fetchError?: FetchErrorData;
        goToTab: (tabName: string) => void;
        isLoaded?: boolean;
        key?: Key;
        ref?: LegacyRef<TabContainerProps>;
        store: Store<
            {
                api: CombinedState<{}, any, "api">;
                bookEditor: BookState;
                catalog: State;
                editor: CombinedState<State>;
            },
        >;
        tab: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    children?: ReactNode
    class?: string
    csrfToken?: string
    diagnostics?: DiagnosticsData
    fetchDiagnostics: () => Promise<any>
    fetchError?: FetchErrorData
    goToTab: (tabName: string) => void
    isLoaded?: boolean
    key?: Key
    ref?: LegacyRef<TabContainerProps>
    store: Store<
        {
            api: CombinedState<{}, any, "api">;
            bookEditor: BookState;
            catalog: State;
            editor: CombinedState<State>;
        },
    >
    tab: string