Files
spacedrive/packages/core/bindings/ClientEvent.ts
2021-12-29 00:50:33 -08:00

2 lines
180 B
TypeScript

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