import { File, Folder } from '../server/consts'; export type FileWithType = File & { type: 'file'; }; export type FolderWithType = Folder & { type: 'folder'; }; export type FileOrFolderWithType = FileWithType | FolderWithType;