source: frontend/node_modules/rollup-plugin-terser/rollup-plugin-terser.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 312 bytes
Line 
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;
Note: See TracBrowser for help on using the repository browser.