mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 11:10:48 +00:00
aac80c3f0a
* Simplify distro Also a ton of drive-by fixing around builds: - simplified many oneliners - fixed missing custom npm registry call setups - remove unnecessary and duplicate work during builds - many many fixes
12 lines
199 B
TypeScript
12 lines
199 B
TypeScript
|
|
declare module "gulp-buffer" {
|
|
function f(): NodeJS.ReadWriteStream;
|
|
|
|
/**
|
|
* This is required as per:
|
|
* https://github.com/microsoft/TypeScript/issues/5073
|
|
*/
|
|
namespace f {}
|
|
|
|
export = f;
|
|
}
|