import { Globals, LineStyle, StringHack } from "./index"; /** * The **`column-rule-style`** CSS property sets the style of the line drawn between columns in a multi-column layout. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :---------: | :----: | :----: | * | **50** | **52** | **3** _-x-_ | **12** | **10** | * * @see https://developer.mozilla.org/docs/Web/CSS/column-rule-style */ export type ColumnRuleStyleProperty = Globals | LineStyle | StringHack;