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