mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
13 lines
413 B
TypeScript
13 lines
413 B
TypeScript
// Type definitions for gulp-csso v1.0.0
|
|
// Project: https://github.com/ben-eb/gulp-csso
|
|
// Definitions by: Tanguy Krotoff <https://github.com/tkrotoff>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="../node/node.d.ts" />
|
|
|
|
declare module 'gulp-csso' {
|
|
function csso(structureMinimization?: boolean): NodeJS.ReadWriteStream;
|
|
namespace csso {}
|
|
export = csso;
|
|
}
|