import { StringHack, Globals } from "./index"; /** * The **`border-spacing`** CSS property sets the distance between the borders of adjacent `` cells. This property applies only when `border-collapse` is `separate`. * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **8** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-spacing */ export type BorderSpacingProperty = Globals | TLength | StringHack;