13 lines
328 B
TypeScript
13 lines
328 B
TypeScript
|
declare module 'ternary-stream' {
|
||
|
import File = require('vinyl');
|
||
|
function f(check: (f: File) => boolean, onTrue: NodeJS.ReadWriteStream, opnFalse?: NodeJS.ReadWriteStream): NodeJS.ReadWriteStream;
|
||
|
|
||
|
/**
|
||
|
* This is required as per:
|
||
|
* https://github.com/microsoft/TypeScript/issues/5073
|
||
|
*/
|
||
|
namespace f {}
|
||
|
|
||
|
export = f;
|
||
|
}
|