// Type definitions for autoprefixer 9.4 // Project: https://github.com/postcss/autoprefixer // Definitions by: Armando Meziat , murt // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.2 import { Plugin } from "postcss"; declare namespace autoprefixer { interface Options { browsers?: string[] | string; env?: string; cascade?: boolean; add?: boolean; remove?: boolean; supports?: boolean; flexbox?: boolean | 'no-2009'; grid?: boolean | 'autoplace' | 'no-autoplace'; stats?: any; ignoreUnknownVersions?: boolean; } type Autoprefixer = Plugin; } declare const autoprefixer: autoprefixer.Autoprefixer; export = autoprefixer;