Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/build/lib/typings/ternary-stream.d.ts
4772 views
1
declare 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