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

    Interface NavigationTabsProps

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

    Properties

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