@thepalaceproject/circulation-admin
    Preparing search index...

    Interface HeaderProps

    interface HeaderProps {
        children?: ReactNode;
        fetchLibraries?: () => Promise<LibrariesData>;
        isFetchingLibraries?: boolean;
        key?: Key;
        libraries?: LibraryData[];
        logoOnly?: boolean;
        ref?: LegacyRef<Header>;
        store?: Store<
            {
                api: CombinedState<{}, any, "api">;
                bookEditor: BookState;
                catalog: State;
                editor: CombinedState<State>;
            },
        >;
    }

    Hierarchy (View Summary)

    Index

    Properties

    children?: ReactNode
    fetchLibraries?: () => Promise<LibrariesData>
    isFetchingLibraries?: boolean
    key?: Key
    libraries?: LibraryData[]
    logoOnly?: boolean
    ref?: LegacyRef<Header>
    store?: Store<
        {
            api: CombinedState<{}, any, "api">;
            bookEditor: BookState;
            catalog: State;
            editor: CombinedState<State>;
        },
    >