mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
12 lines
227 B
TypeScript
12 lines
227 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;
|
|
} |