UNPKG

st-bundle

Version:

CLI for watching and bundling SpringType projects.

12 lines (11 loc) 403 B
import { Context } from '../../core/Context'; import { Module } from '../../core/Module'; export declare type IPluginRawProps = { useDefault?: boolean; }; export declare function pluginRawHandler(props: { ctx: Context; module: Module; opts: IPluginRawProps; }): void; export declare function pluginRaw(a?: IPluginRawProps | string | RegExp, b?: IPluginRawProps): (ctx: Context) => void;