mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-30 01:47:21 +08:00
28 lines
671 B
TypeScript
28 lines
671 B
TypeScript
// Type definitions for gulp-espower
|
|
// Project: https://github.com/power-assert-js/gulp-espower
|
|
// Definitions by: Qubo <https://github.com/tkQubo>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="../node/node.d.ts" />
|
|
|
|
declare module "gulp-espower" {
|
|
|
|
namespace espower {
|
|
interface Espower {
|
|
/**
|
|
* @param options Target patterns for power assert feature instrumentation.
|
|
*/
|
|
(options?: Options): NodeJS.ReadWriteStream;
|
|
}
|
|
|
|
interface Options {
|
|
patterns: string[];
|
|
}
|
|
}
|
|
|
|
var espower: espower.Espower;
|
|
|
|
export = espower;
|
|
}
|
|
|