UNPKG

468 BTypeScriptView Raw
1// Type definitions for gulp-bump 2.8
2// Project: https://github.com/stevelacy/gulp-bump, https://github.com/stevelacy/gulp-bump
3// Definitions by: silkentrance <https://github.com/silkentrance>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6/// <reference types="node"/>
7
8import * as BumpRegex from 'bump-regex';
9
10declare function GulpBump(options?: BumpRegex.Options): NodeJS.ReadWriteStream;
11
12declare namespace GulpBump {
13}
14
15export = GulpBump;