0.19.6 • Published 3 months ago

@types/rollup-plugin-buble v0.19.6

Weekly downloads
1,119
License
MIT
Repository
github
Last release
3 months ago

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

// Type definitions for rollup-plugin-buble 0.19
// Project: https://github.com/rollup/rollup-plugin-buble#readme
// Definitions by: Hugo Alliaume <https://github.com/Kocal>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

/// <reference types="node" />

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> | string | RegExp | null | undefined;
        exclude?: Array<string | RegExp> | string | RegExp | null | undefined;
    }
}

export = buble;
declare function buble(options?: buble.Options): Plugin;

Additional Details

Credits

These definitions were written by Hugo Alliaume.

0.19.6

3 months ago

0.19.3

8 months ago

0.19.4

7 months ago

0.19.5

7 months ago

0.19.2

3 years ago

0.19.1

5 years ago

0.19.0

5 years ago