Files
warren/types/index.ts

7 lines
126 B
TypeScript

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