UNPKG

st-bundle

Version:

CLI for watching and bundling SpringType projects.

12 lines (11 loc) 326 B
import { Context } from '../core/Context'; import { WatcherAction } from '../watcher/watcher'; export interface IWatcherAttachProps { ctx: Context; } export interface OnWatcherProps { action: WatcherAction; file: string; ctx: Context; } export declare function attachWatcher(props: IWatcherAttachProps): void;