|
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 | |
|---|
| 1 | import { Plugin } from "rollup";
|
|---|
| 2 | import { MinifyOptions } from "terser";
|
|---|
| 3 |
|
|---|
| 4 | export 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 |
|
|---|
| 11 | export declare function terser(options?: Options): Plugin;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.