import { Globals, LineStyle, StringHack } from "./index"; /** * The **`border-style`** CSS property is a shorthand property that sets the line style for all four sides of an element's border. * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-style */ export type BorderStyleProperty = Globals | LineStyle | StringHack;