fuse-box
Version:
Fuse-Box a bundler that does it right
36 lines (35 loc) • 693 B
TypeScript
import { File } from "../../core/File";
import { WorkFlowContext, Plugin } from "./../../core/WorkflowContext";
/**
*
*
* @export
* @class FuseBoxHTMLPlugin
* @implements {Plugin}
*/
export declare class SVGSimplePlugin implements Plugin {
/**
*
*
* @type {RegExp}
* @memberOf FuseBoxHTMLPlugin
*/
test: RegExp;
/**
*
*
* @param {WorkFlowContext} context
*
* @memberOf FuseBoxHTMLPlugin
*/
init(context: WorkFlowContext): void;
/**
*
*
* @param {File} file
*
* @memberOf FuseBoxHTMLPlugin
*/
transform(file: File): void;
}
export declare const SVGPlugin: () => SVGSimplePlugin;