8 lines
215 B
TypeScript
8 lines
215 B
TypeScript
|
|
import { MessagePort } from 'node:worker_threads';
|
||
|
|
import { C as ContextRPC } from './worker.tN5KGIih.js';
|
||
|
|
|
||
|
|
interface WorkerContext extends ContextRPC {
|
||
|
|
port: MessagePort;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type { WorkerContext as W };
|