import { Globals, StringHack } from "./index"; /** * The **`paint-order`** CSS property lets you control the order in which the fill and stroke (and painting markers) of text content and shapes are drawn. * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | No | **60** | Yes | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/paint-order */ export type PaintOrderProperty = Globals | "fill" | "markers" | "normal" | "stroke" | StringHack;