mirror of
https://github.com/whyour/qinglong.git
synced 2026-09-20 16:07:11 +08:00
6 lines
159 B
TypeScript
6 lines
159 B
TypeScript
export type WorkerExecutionDrainResult = 'drained' | 'timed_out';
|
|
|
|
export interface WorkerExecutionDrainer {
|
|
drain(): Promise<WorkerExecutionDrainResult>;
|
|
}
|