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