Files
spacedrive/packages/core/bindings/ClientEvent.ts
2022-01-17 12:38:05 -08:00

2 lines
249 B
TypeScript

export type ClientEvent = { type: "NewFileTypeThumb", data: { file_id: number, icon_created: boolean, } } | { type: "NewJobCreated", data: { job_id: number, progress: number, } } | { type: "DatabaseDisconnected", data: { reason: string | null, } };