mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-21 09:51:11 +00:00
15 lines
270 B
TypeScript
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,
|
|
}
|