DefinitelyTyped/types/gulp-postcss/index.d.ts

21 lines
673 B
TypeScript
Raw Permalink Normal View History

2019-04-08 01:47:50 +00:00
// Type definitions for gulp-postcss 8.0
2019-04-09 01:59:47 +00:00
// Project: https://github.com/postcss/gulp-postcss
2019-04-08 01:47:50 +00:00
// Definitions by: Takesi Tokugawa <https://github.com/TokugawaTakesi>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
2019-04-09 01:43:19 +00:00
// TypeScript Version: 2.8
2019-04-08 01:47:50 +00:00
/// <reference types="node"/>
import Vinyl = require('vinyl');
2019-04-09 01:43:19 +00:00
declare function GulpPostCss(plugins?: any[], options?: GulpPostCss.Options): NodeJS.ReadWriteStream;
2019-04-10 02:00:42 +00:00
declare function GulpPostCss(callback?: (file: Vinyl) => { plugins?: any[], options?: GulpPostCss.Options }):
2019-04-08 01:47:50 +00:00
NodeJS.ReadWriteStream;
declare namespace GulpPostCss {
interface Options {
2019-04-09 01:23:51 +00:00
parser?: any;
2019-04-08 01:47:50 +00:00
}
}
export = GulpPostCss;