Files
XCDesktop/shared/types/recycle-bin.ts
2026-03-08 01:34:54 +08:00

15 lines
259 B
TypeScript

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[]
}