UNPKG

312 BTypeScriptView Raw
1import { Plugin } from "rollup";
2import { MinifyOptions } from "terser";
3
4export interface Options extends Omit<MinifyOptions, "sourceMap"> {
5 /**
6 * Amount of workers to spawn. Defaults to the number of CPUs minus 1.
7 */
8 numWorkers?: number;
9}
10
11export declare function terser(options?: Options): Plugin;