mirror of https://git.tuxpa.in/a/code-server.git
13 lines
301 B
TypeScript
13 lines
301 B
TypeScript
|
declare module 'gulp-flatmap' {
|
||
|
import File = require('vinyl');
|
||
|
function f(fn:(stream:NodeJS.ReadWriteStream, file:File)=>NodeJS.ReadWriteStream): NodeJS.ReadWriteStream;
|
||
|
|
||
|
/**
|
||
|
* This is required as per:
|
||
|
* https://github.com/microsoft/TypeScript/issues/5073
|
||
|
*/
|
||
|
namespace f {}
|
||
|
|
||
|
export = f;
|
||
|
}
|