import { Globals, StringHack } from "./index"; /** * The **`flex-flow`** CSS property is a shorthand property for `flex-direction` and `flex-wrap` properties. * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :-----: | :-------: | :----: | :----: | * | **29** | **28** | **9** | **12** | **11** | * | 21 _-x-_ | | 6.1 _-x-_ | | | * * @see https://developer.mozilla.org/docs/Web/CSS/flex-flow */ export type FlexFlowProperty = Globals | "column" | "column-reverse" | "nowrap" | "row" | "row-reverse" | "wrap" | "wrap-reverse" | StringHack;