import { type IndexBuilderWorkerData } from './runtime-index'; /** * Worker-thread entry point that builds the runtime index for a single cached * package. * * Started by {@link import('./runtime-index').buildIndexInWorker} when a cached * package is first loaded. It re-reads the assembly identified by its * {@link IndexBuilderWorkerData} and writes the runtime index alongside it. It * shares no state with the kernel; building the index is best-effort, so a * failure just leaves the index unbuilt and the next load tries again. */ export declare function runIndexBuilder(data: IndexBuilderWorkerData): void; //# sourceMappingURL=runtime-index-worker.d.ts.map