Datalayer Desktop - v0.0.2
    Preparing search index...
    interface AppHeaderProps {
        activeTabId: string;
        isAuthenticated: boolean;
        onDocumentClose: (documentId: string) => void;
        onLogout: () => void;
        onNotebookClose: (notebookId: string) => void;
        onTabChange: (tabId: string) => void;
        openDocuments: { description?: string; id: string; name: string }[];
        openNotebooks: { description?: string; id: string; name: string }[];
        user: null | UserJSON;
    }
    Index

    Properties

    activeTabId: string
    isAuthenticated: boolean
    onDocumentClose: (documentId: string) => void
    onLogout: () => void
    onNotebookClose: (notebookId: string) => void
    onTabChange: (tabId: string) => void
    openDocuments: { description?: string; id: string; name: string }[]
    openNotebooks: { description?: string; id: string; name: string }[]
    user: null | UserJSON