mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-29 17:07:07 +08:00
23 lines
588 B
TypeScript
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;
|
|
}
|