mirror of https://git.tuxpa.in/a/code-server.git
13 lines
196 B
TypeScript
13 lines
196 B
TypeScript
|
|
||
|
declare module "gulp-bom" {
|
||
|
function f(): NodeJS.ReadWriteStream;
|
||
|
|
||
|
/**
|
||
|
* This is required as per:
|
||
|
* https://github.com/microsoft/TypeScript/issues/5073
|
||
|
*/
|
||
|
namespace f {}
|
||
|
|
||
|
export = f;
|
||
|
}
|