import { Globals, StringHack } from "./index"; /** * The **`grid-template`** CSS property is a shorthand property for defining grid columns, rows, and areas. * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **52** | **10.1** | **16** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/grid-template */ export type GridTemplateProperty = Globals | "none" | StringHack;