UNPKG

932 BTypeScriptView Raw
1// Type definitions for postcss-flexbugs-fixes 4.2
2// Project: https://github.com/luisrudge/postcss-flexbugs-fixes#readme
3// Definitions by: Piotr Błażejewicz <https://github.com/peterblazejewicz>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6import { Plugin } from 'postcss';
7
8declare namespace postcssFlexbugsFixes {
9 type PostcssFlexbugsFixesPlugin = Plugin<Options>;
10
11 interface Options {
12 /**
13 * @default true
14 */
15 bug4?: boolean | undefined;
16 /**
17 * @default true
18 */
19 bug6?: boolean | undefined;
20 /**
21 * @default true
22 */
23 bug81a?: boolean | undefined;
24 }
25}
26
27/**
28 * PostCSS plugin This project tries to fix all of {@link https://github.com/philipwalton/flexbugs|flexbug's} issues.
29 */
30declare const postcssFlexbugsFixes: postcssFlexbugsFixes.PostcssFlexbugsFixesPlugin;
31
32export = postcssFlexbugsFixes;