UNPKG

1.71 kBMarkdownView Raw
1# Installation
2> `npm install --save @types/postcss-flexbugs-fixes`
3
4# Summary
5This package contains type definitions for postcss-flexbugs-fixes (https://github.com/luisrudge/postcss-flexbugs-fixes#readme).
6
7# Details
8Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/postcss-flexbugs-fixes.
9## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/postcss-flexbugs-fixes/index.d.ts)
10````ts
11// Type definitions for postcss-flexbugs-fixes 5.0
12// Project: https://github.com/luisrudge/postcss-flexbugs-fixes#readme
13// Definitions by: Piotr Błażejewicz <https://github.com/peterblazejewicz>
14// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
15
16import { PluginCreator } from 'postcss';
17
18declare namespace postcssFlexbugsFixes {
19 type PostcssFlexbugsFixesPlugin = PluginCreator<Options>;
20
21 interface Options {
22 /**
23 * @default true
24 */
25 bug4?: boolean | undefined;
26 /**
27 * @default true
28 */
29 bug6?: boolean | undefined;
30 /**
31 * @default true
32 */
33 bug81a?: boolean | undefined;
34 }
35}
36
37/**
38 * PostCSS plugin This project tries to fix all of {@link https://github.com/philipwalton/flexbugs|flexbug's} issues.
39 */
40declare const postcssFlexbugsFixes: postcssFlexbugsFixes.PostcssFlexbugsFixesPlugin;
41
42export = postcssFlexbugsFixes;
43
44````
45
46### Additional Details
47 * Last updated: Wed, 26 Apr 2023 09:03:28 GMT
48 * Dependencies: [@types/postcss](https://npmjs.com/package/@types/postcss)
49 * Global values: none
50
51# Credits
52These definitions were written by [Piotr Błażejewicz](https://github.com/peterblazejewicz).
53
\No newline at end of file