// Type definitions for gulp-gh-pages // Project: https://github.com/rowoot/gulp-gh-pages // Definitions by: Asana // Definitions: https://github.com/borisyankov/DefinitelyTyped /// 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; }