mirror of
https://github.com/danog/code-server.git
synced 2024-12-16 11:16:59 +01:00
13 lines
228 B
TypeScript
13 lines
228 B
TypeScript
|
|
||
|
declare module "gulp-cssnano" {
|
||
|
function f(opts:{reduceIdents:boolean;}): NodeJS.ReadWriteStream;
|
||
|
|
||
|
/**
|
||
|
* This is required as per:
|
||
|
* https://github.com/microsoft/TypeScript/issues/5073
|
||
|
*/
|
||
|
namespace f {}
|
||
|
|
||
|
export = f;
|
||
|
}
|