Files
warren/frontend/types/index.ts
2025-07-11 23:55:46 +02:00

7 lines
126 B
TypeScript

export type DirectoryEntryType = 'file' | 'directory';
export type BreadcrumbData = {
name: string;
href: string;
};