Files
spacedrive/packages/core/bindings/ClientEvent.ts
Jamie Pine 939857a955 react query working with Rust
- other stuff
2022-03-12 10:00:58 -08:00

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, } };