mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-22 11:57:33 +08:00
16 lines
428 B
TypeScript
16 lines
428 B
TypeScript
// Type definitions for gulp-bump 2.8
|
|
// Project: https://github.com/stevelacy/gulp-bump
|
|
// Definitions by: silkentrance <https://github.com/silkentrance>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node"/>
|
|
|
|
import * as BumpRegex from 'bump-regex';
|
|
|
|
declare function GulpBump(options?: BumpRegex.Options): NodeJS.ReadWriteStream;
|
|
|
|
declare namespace GulpBump {
|
|
}
|
|
|
|
export = GulpBump;
|