// Type definitions for rollup-plugin-buble 0.19 // Project: https://github.com/rollup/rollup-plugin-buble#readme // Definitions by: Hugo Alliaume // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.3 /// import { Plugin } from 'rollup'; import { TransformOptions } from 'buble'; declare namespace buble { interface Options extends TransformOptions { // Every files will be parsed by default, but you can specify which files to include or exclude include?: Array | string | RegExp | null; exclude?: Array | string | RegExp | null; } } export = buble; declare function buble(options?: buble.Options): Plugin;