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