import { StringHack, Globals, LineWidth } from "./index"; /** * The **`border-top-width`** CSS property sets the width of the top border of an element. * * **Initial value**: `medium` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-top-width */ export type BorderTopWidthProperty = Globals | LineWidth;