mirror of
https://git.tuxpa.in/a/code-server.git
synced 2025-01-07 09:08:45 +00:00
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;
|
|
}
|