Files
XCDesktop/shared/types/recycle-bin.ts

15 lines
259 B
TypeScript
Raw Permalink Normal View History

2026-03-08 01:34:54 +08:00
import type { FileKind } from './file.js'
export interface RecycleBinItemDTO {
name: string
originalName: string
type: FileKind
deletedDate: string
path: string
}
export interface RecycleBinGroupDTO {
date: string
items: RecycleBinItemDTO[]
}