@types/postcss-flexbugs-fixes
Version:
TypeScript definitions for postcss-flexbugs-fixes
47 lines (37 loc) • 1.41 kB
Markdown
# Installation
> `npm install --save @types/postcss-flexbugs-fixes`
# Summary
This package contains type definitions for postcss-flexbugs-fixes (https://github.com/luisrudge/postcss-flexbugs-fixes#readme).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/postcss-flexbugs-fixes.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/postcss-flexbugs-fixes/index.d.ts)
````ts
import { PluginCreator } from "postcss";
declare namespace postcssFlexbugsFixes {
type PostcssFlexbugsFixesPlugin = PluginCreator<Options>;
interface Options {
/**
* @default true
*/
bug4?: boolean | undefined;
/**
* @default true
*/
bug6?: boolean | undefined;
/**
* @default true
*/
bug81a?: boolean | undefined;
}
}
/**
* PostCSS plugin This project tries to fix all of {@link https://github.com/philipwalton/flexbugs|flexbug's} issues.
*/
declare const postcssFlexbugsFixes: postcssFlexbugsFixes.PostcssFlexbugsFixesPlugin;
export = postcssFlexbugsFixes;
````
### Additional Details
* Last updated: Tue, 07 Nov 2023 09:09:39 GMT
* Dependencies: [postcss](https://npmjs.com/package/postcss)
# Credits
These definitions were written by [Piotr Błażejewicz](https://github.com/peterblazejewicz).