Files
DefinitelyTyped/gulp-jspm/gulp-jspm.d.ts
2016-01-25 19:37:48 +01:00

23 lines
588 B
TypeScript

// Type definitions for gulp-jspm v0.5.4
// Project: https://www.npmjs.com/package/gulp-jspm
// Definitions by: Peter Juras <https://github.com/peterjuras>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../node/node.d.ts" />
declare module "gulp-jspm" {
interface Options {
arithmetic?: string;
selfExecutingBundle?: boolean;
plugin?: boolean | string;
inject?: boolean;
minify?: boolean;
}
interface GulpJspm {
(options?: Options) : NodeJS.ReadWriteStream;
}
const gulpJspm : GulpJspm;
export = gulpJspm;
}