1declare module 'ternary-stream' { 2 import File = require('vinyl'); 3 function f(check: (f: File) => boolean, onTrue: NodeJS.ReadWriteStream, opnFalse?: NodeJS.ReadWriteStream): NodeJS.ReadWriteStream; 4 5 /** 6 * This is required as per: 7 * https://github.com/microsoft/TypeScript/issues/5073 8 */ 9 namespace f {} 10 11 export = f; 12} 13 14