In below type definitions for gulp-postcss on parser?: Object; play any npm-library could be. How I should to annotate it?
/// <reference types="node"/>
import Vinyl = require('vinyl');
declare function GulpPostCss(plugins?: string[], options?: GulpPostCss.Options): NodeJS.ReadWriteStream;
declare function GulpPostCss(callback?: (file: Vinyl) => { plugins?: string[], options?: GulpPostCss.Options }):
NodeJS.ReadWriteStream;
declare namespace GulpPostCss {
interface Options {
parser?: Object;
}
}
export = GulpPostCss;
Off course any or Object is the last solution, when no other solutions exists (by the way DefinitelyTyped do not accepts Object type).
any.