mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
25 lines
578 B
TypeScript
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;
|