import { Globals, LineStyle } from "./index"; /** * The **`border-inline-style`** CSS property defines the style of the logical inline borders of an element, which maps to a physical border style depending on the element's writing mode, directionality, and text orientation. It corresponds to the `border-top-style` and `border-bottom-style`, or `border-left-style` and `border-right-style` properties depending on the values defined for `writing-mode`, `direction`, and `text-orientation`. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | n/a | **66** | No | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style */ export type BorderInlineStyleProperty = Globals | LineStyle;