7 lines
126 B
TypeScript
7 lines
126 B
TypeScript
export type DirectoryEntryType = 'file' | 'directory';
|
|
|
|
export type BreadcrumbData = {
|
|
name: string;
|
|
href: string;
|
|
};
|