UNPKG

rollup-plugin-watch

Version:

A rollup plugin to specify directories and files to watch

9 lines (7 loc) 200 B
import { Plugin } from "rollup"; declare interface Options { dir: string, include?: string | string[], exclude?: string | string[] } export default function (options?: Options) : Plugin;