Files
spacedrive/packages/core/bindings/CoreEvent.ts
2022-03-14 05:05:21 -07:00

4 lines
338 B
TypeScript

import type { ClientQuery } from "./ClientQuery";
import type { CoreResource } from "./CoreResource";
export type CoreEvent = { key: "InvalidateQuery", data: ClientQuery } | { key: "InvalidateResource", data: CoreResource } | { key: "Log", data: { message: string, } } | { key: "DatabaseDisconnected", data: { reason: string | null, } };