@types/rollup-plugin-buble
Version:
TypeScript definitions for rollup-plugin-buble
33 lines (25 loc) • 1.24 kB
Markdown
# Installation
> `npm install --save @types/rollup-plugin-buble`
# Summary
This package contains type definitions for rollup-plugin-buble (https://github.com/rollup/rollup-plugin-buble#readme).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rollup-plugin-buble.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rollup-plugin-buble/index.d.ts)
````ts
import { TransformOptions } from "buble";
import { Plugin } from "rollup";
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> | string | RegExp | null | undefined;
exclude?: Array<string | RegExp> | string | RegExp | null | undefined;
}
}
export = buble;
declare function buble(options?: buble.Options): Plugin;
````
### Additional Details
* Last updated: Fri, 01 Mar 2024 00:50:47 GMT
* Dependencies: [@types/buble](https://npmjs.com/package/@types/buble), [rollup](https://npmjs.com/package/rollup)
# Credits
These definitions were written by [Hugo Alliaume](https://github.com/Kocal).