UNPKG

reboost

Version:

A super fast dev server for rapid web development

12 lines (11 loc) 370 B
import { Matcher } from 'anymatch'; import { ReboostPlugin } from '../index'; declare namespace UsePlugin { interface Options { include: Matcher; exclude?: Matcher; use: ReboostPlugin | ReboostPlugin[] | ReboostPlugin[][]; } } declare function UsePlugin(...options: UsePlugin.Options[]): ReboostPlugin[]; export { UsePlugin };