UNPKG

495 BTypeScriptView Raw
1import { TransformOptions } from "buble";
2import { Plugin } from "rollup";
3
4declare namespace buble {
5 interface Options extends TransformOptions {
6 // Every files will be parsed by default, but you can specify which files to include or exclude
7 include?: Array<string | RegExp> | string | RegExp | null | undefined;
8 exclude?: Array<string | RegExp> | string | RegExp | null | undefined;
9 }
10}
11
12export = buble;
13declare function buble(options?: buble.Options): Plugin;