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