Module Font.Size

include sig ... end
type absolute_size = [
| `xx_small
| `x_small
| `small
| `medium
| `large
| `x_large
| `xx_large
]
include sig ... end
val absolute_sizeToJs : absolute_size -> string
val absolute_sizeFromJs : string -> absolute_size option
include sig ... end
type relative_size = [
| `larger
| `smaller
]
include sig ... end
val relative_sizeToJs : relative_size -> string
val relative_sizeFromJs : string -> relative_size option
type t = [
| Global.t
| LengthPercent.t
| absolute_size
| relative_size
]
val show : t -> string