type absolute_units = "cm" | "mm" | "in" | "px" | "pt" | "pc"; type relative_units = "em" | "ex" | "ch" | "rem" | "vw" | "vh" | "vmin" | "vmax" | "%"; type units = absolute_units | relative_units; export type value = `${number}${units}`;