mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
21 lines
673 B
TypeScript
21 lines
673 B
TypeScript
// Type definitions for gulp-postcss 8.0
|
|
// Project: https://github.com/postcss/gulp-postcss
|
|
// Definitions by: Takesi Tokugawa <https://github.com/TokugawaTakesi>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.8
|
|
|
|
/// <reference types="node"/>
|
|
import Vinyl = require('vinyl');
|
|
|
|
declare function GulpPostCss(plugins?: any[], options?: GulpPostCss.Options): NodeJS.ReadWriteStream;
|
|
declare function GulpPostCss(callback?: (file: Vinyl) => { plugins?: any[], options?: GulpPostCss.Options }):
|
|
NodeJS.ReadWriteStream;
|
|
|
|
declare namespace GulpPostCss {
|
|
interface Options {
|
|
parser?: any;
|
|
}
|
|
}
|
|
|
|
export = GulpPostCss;
|