import { Globals, GridLine } from "./index"; /** * The **`grid-column-end`** CSS property specifies a grid item’s end position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the block-end edge of its grid area. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **52** | **10.1** | **16** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/grid-column-end */ export type GridColumnEndProperty = Globals | GridLine;