DefinitelyTyped/types/rollup-plugin-progress/index.d.ts
Jeroen Claassens 4a7c959775 Add type definitions for rollup-plugin-progress (#37463)
Signed-off-by: Jeroen Claassens <support@favware.tech>
2019-08-08 10:21:16 -07:00

17 lines
504 B
TypeScript

// Type definitions for rollup-plugin-progress 1.1
// Project: https://github.com/jkuri/rollup-plugin-progress#readme
// Definitions by: Jeroen Claassens <https://github.com/favna>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
/// <reference types="node" />
import { Plugin } from 'rollup';
export interface PluginProgressOptions {
clearLine?: boolean;
}
declare function progress(options?: PluginProgressOptions): Plugin;
export default progress;