UNPKG

ngx-thread

Version:

Implements multi-threading in Angular using Web Worker

7 lines (6 loc) 155 B
export interface ThreadMessageContract { type: ThreadMessageType; data: any; } export type ThreadMessageType = 'run' | 'progress' | 'success' | 'error';