/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import { Piscina } from 'piscina'; export type WorkerPoolOptions = ConstructorParameters[0]; export declare class WorkerPool extends Piscina { constructor(options: WorkerPoolOptions); }