$ cnpm install @types/rollup-plugin-buble
npm install --save @types/rollup-plugin-buble
This package contains type definitions for rollup-plugin-buble (https://github.com/rollup/rollup-plugin-buble#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rollup-plugin-buble.
// 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;
These definitions were written by Hugo Alliaume.
Copyright 2013 - present © cnpmjs.org | Home |