DefinitelyTyped/types/gulp-gh-pages/index.d.ts
2019-02-20 21:01:45 +08:00

25 lines
578 B
TypeScript

// Type definitions for gulp-gh-pages
// Project: https://github.com/rowoot/gulp-gh-pages
// Definitions by: Asana <https://asana.com>
// Ntnyq <https://github.com/ntnyq>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node"/>
interface Options {
remoteUrl?: string;
origin?: string;
branch?: string;
cacheDir?: string;
push?: boolean;
force?: boolean;
message?: string;
}
declare function ghPages(opts?: Options): NodeJS.ReadWriteStream;
declare namespace ghPages { }
export = ghPages;