mirror of
https://github.com/cdr/code-server.git
synced 2025-12-11 19:06:21 +01:00
12 lines
228 B
TypeScript
12 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;
|
|
}
|