import { StringHack, Globals, LineWidth, LineStyle, Color } from "./index"; /** * The **`border`** CSS property sets an element's border. It's a shorthand for `border-width`, `border-style`, and `border-color`. * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/border */ export type BorderProperty = Globals | LineWidth | LineStyle | Color | StringHack;