1 | # Installation
|
2 | > `npm install --save @types/rollup-plugin-buble`
|
3 |
|
4 | # Summary
|
5 | This package contains type definitions for rollup-plugin-buble (https://github.com/rollup/rollup-plugin-buble#readme).
|
6 |
|
7 | # Details
|
8 | Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rollup-plugin-buble.
|
9 | ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rollup-plugin-buble/index.d.ts)
|
10 | ````ts
|
11 | import { TransformOptions } from "buble";
|
12 | import { Plugin } from "rollup";
|
13 |
|
14 | declare namespace buble {
|
15 | interface Options extends TransformOptions {
|
16 | // Every files will be parsed by default, but you can specify which files to include or exclude
|
17 | include?: Array<string | RegExp> | string | RegExp | null | undefined;
|
18 | exclude?: Array<string | RegExp> | string | RegExp | null | undefined;
|
19 | }
|
20 | }
|
21 |
|
22 | export = buble;
|
23 | declare function buble(options?: buble.Options): Plugin;
|
24 |
|
25 | ````
|
26 |
|
27 | ### Additional Details
|
28 | * Last updated: Fri, 01 Mar 2024 00:50:47 GMT
|
29 | * Dependencies: [@types/buble](https://npmjs.com/package/@types/buble), [rollup](https://npmjs.com/package/rollup)
|
30 |
|
31 | # Credits
|
32 | These definitions were written by [Hugo Alliaume](https://github.com/Kocal).
|
33 |
|
\ | No newline at end of file |