import { StringHack, Globals, LineWidth, LineStyle, Color } from "./index"; /** * The **`border-block`** CSS property is a shorthand property for setting the individual logical block border property values in a single place in the style sheet. * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | n/a | **66** | No | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-block */ export type BorderBlockProperty = Globals | LineWidth | LineStyle | Color | StringHack;