import { Globals, StringHack } from "./index"; /** * The **`grid-template-areas`** CSS property specifies named grid areas. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :----: | :-: | * | **57** | **52** | **10.1** | **16** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/grid-template-areas */ export type GridTemplateAreasProperty = Globals | "none" | StringHack;