Files
cosmos-explorer/src/Explorer/Notebook/NotebookContentItem.ts
2021-01-20 09:15:01 -06:00

15 lines
270 B
TypeScript

export interface NotebookContentItem {
name: string;
path: string;
type: NotebookContentItemType;
children?: NotebookContentItem[];
parent?: NotebookContentItem;
timestamp?: number;
}
export enum NotebookContentItemType {
Notebook,
File,
Directory,
}