DefinitelyTyped/types/gulp-jasmine-browser/index.d.ts
2017-03-24 14:27:52 -07:00

17 lines
537 B
TypeScript

// Type definitions for gulp-jasmine-browser v0.1.4
// Project: https://github.com/jasmine/gulp-jasmine-browser
// Definitions by: Tanguy Krotoff <https://github.com/tkrotoff>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
interface IJasmineBrowser {
specRunner(options?: any): NodeJS.ReadWriteStream;
server(options?: any): NodeJS.ReadWriteStream;
headless(options?: any): NodeJS.ReadWriteStream;
}
declare var jasmineBrowser: IJasmineBrowser;
export = jasmineBrowser;