import { Globals, StringHack } from "./index"; /** * The **`-ms-hyphenate-limit-chars`** CSS property is a Microsoft extension that specifies one to three values indicating the minimum number of characters in a hyphenated word. If the word does not meet the required minimum number of characters in the word, before the hyphen, or after the hyphen, then the word is not hyphenated. * * **Initial value**: `auto` */ export type MsHyphenateLimitCharsProperty = Globals | "auto" | StringHack | number;