mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-13 03:56:33 -04:00
2 lines
329 B
TypeScript
2 lines
329 B
TypeScript
|
|
export type ClientEvent = { key: "new_file_type_thumb", payload: { file_id: number, icon_created: boolean, } } | { key: "new_job_created", payload: { job_id: number, progress: number, } } | { key: "resource_change", payload: { key: string, id: string, } } | { key: "database_disconnected", payload: { reason: string | null, } }; |