import { Globals, StringHack } from "./index"; /** * The `initial-letter` CSS property sets styling for dropped, raised, and sunken initial letters. * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | No | No | **9** | n/a | No | * * @see https://developer.mozilla.org/docs/Web/CSS/initial-letter */ export type InitialLetterProperty = Globals | "normal" | StringHack | number;