UNPKG

@csstools/postcss-logical-float-and-clear

Version:

Use flow-relative (inline-start and inline-end) values for float and clear

20 lines (15 loc) 512 B
import type { PluginCreator } from 'postcss'; declare const creator: PluginCreator<pluginOptions>; export default creator; export declare enum DirectionFlow { TopToBottom = "top-to-bottom", BottomToTop = "bottom-to-top", RightToLeft = "right-to-left", LeftToRight = "left-to-right" } /** postcss-logical-float-and-clear plugin options */ export declare type pluginOptions = { /** Sets the direction for inline. default: left-to-right */ inlineDirection?: DirectionFlow; }; export { }