@datalayer/core
Version:
[](https://datalayer.io)
12 lines (11 loc) • 325 B
TypeScript
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;