UNPKG

@mui/internal-docs-infra

Version:

MUI Infra - internal documentation creation tools.

10 lines 381 B
import type { WorkerRequest, WorkerResponse } from "./worker.mjs"; /** * Shared interface for types processing managers. */ export interface TypesProcessor { processTypes(request: WorkerRequest): Promise<WorkerResponse>; terminate(): void; } export declare function getWorkerManager(socketDir?: string): TypesProcessor; export declare function terminateWorkerManager(): void;