import { Globals, StringHack } from "./index"; /** * The **`border-image-slice`** CSS property divides the image specified by `border-image-source` into regions. These regions form the components of an element's border image. * * **Initial value**: `100%` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :----: | * | **15** | **15** | **6** | **12** | **11** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-image-slice */ export type BorderImageSliceProperty = Globals | StringHack | number;