Interface NotebookEditorProps

interface NotebookEditorProps {
    error?: Promise<string>;
    notebookData: Promise<NotebookModel>;
    notebookType: string;
    uri: URI;
}

Properties

error?: Promise<string>
notebookData: Promise<NotebookModel>
notebookType: string
uri: URI