UNPKG

fuse-box

Version:

Fuse-Box a bundler that does it right

20 lines (19 loc) 542 B
import { Plugin } from "../core/WorkflowContext"; export interface UglifyJSPluginOptions { [key: string]: any; } /** * @export * @class UglifyJSPluginClass * @implements {Plugin} */ export declare class UglifyJSPluginClass implements Plugin { options: UglifyJSPluginOptions; /** * @type {any} * @memberOf UglifyJSPluginClass */ constructor(options?: UglifyJSPluginOptions); postBundle(context: any): void; } export declare const UglifyJSPlugin: (options?: UglifyJSPluginOptions) => UglifyJSPluginClass;