UNPKG

@datalayer/core

Version:
12 lines (11 loc) 325 B
import { INotebookContent } from '@jupyterlab/nbformat'; import { IItem } from "./Item"; import { IDataset } from './Dataset'; export type IBaseNotebook = IItem & { nbformat?: INotebookContent; datasets: Array<IDataset>; }; export type INotebook = IBaseNotebook & { type: 'notebook'; }; export default INotebook;