mirror of
https://github.com/Fabio286/antares.git
synced 2025-06-05 21:59:22 +02:00
8 lines
253 B
TypeScript
8 lines
253 B
TypeScript
export type WorkerEvent = 'export-progress' | 'import-progress' | 'query-error' | 'end' | 'cancel' | 'error'
|
|
|
|
export interface WorkerIpcMessage {
|
|
type: WorkerEvent;
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
payload: any;
|
|
}
|