fuse-box
Version:
Fuse-Box a bundler that does it right
12 lines (11 loc) • 415 B
TypeScript
import { Context } from '../../core/context';
import { IModule } from '../../moduleResolver/module';
export declare type IPluginRawProps = {
useDefault?: boolean;
};
export declare function pluginRawHandler(props: {
ctx: Context;
module: IModule;
opts: IPluginRawProps;
}): void;
export declare function pluginRaw(a?: IPluginRawProps | RegExp | string, b?: IPluginRawProps): (ctx: Context) => void;