Datalayer Desktop - v0.0.2
    Preparing search index...

    Interface AppHeaderProps

    interface AppHeaderProps {
        currentView: ViewType;
        isAuthenticated: boolean;
        isDocumentEditorActive: boolean;
        isNotebookEditorActive: boolean;
        onLogout: () => void;
        onViewChange: (view: ViewType) => void;
        selectedDocument?: null | { description?: string; name: string };
        selectedNotebook?: null | { description?: string; name: string };
        user: null | UserJSON;
    }
    Index

    Properties

    currentView: ViewType
    isAuthenticated: boolean
    isDocumentEditorActive: boolean
    isNotebookEditorActive: boolean
    onLogout: () => void
    onViewChange: (view: ViewType) => void
    selectedDocument?: null | { description?: string; name: string }
    selectedNotebook?: null | { description?: string; name: string }
    user: null | UserJSON