mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-17 11:50:22 +08:00
24 lines
578 B
TypeScript
24 lines
578 B
TypeScript
// Type definitions for gulp-gh-pages
|
|
// Project: https://github.com/rowoot/gulp-gh-pages
|
|
// Definitions by: Asana <https://asana.com>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="../node/node.d.ts"/>
|
|
|
|
declare module "gulp-gh-pages" {
|
|
interface Options {
|
|
remoteUrl?: string;
|
|
origin?: string;
|
|
branch?: string;
|
|
cacheDir?: string;
|
|
push?: boolean;
|
|
message?: string;
|
|
}
|
|
|
|
function ghPages(opts?: Options): NodeJS.ReadWriteStream;
|
|
|
|
namespace ghPages {}
|
|
|
|
export = ghPages;
|
|
}
|