UNPKG

@angular/build

Version:

Official build system for Angular

13 lines (12 loc) 409 B
/** * @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<typeof Piscina>[0]; export declare class WorkerPool extends Piscina { constructor(options: WorkerPoolOptions); }