module FontPattern: FontPattern
FontPattern
type slant =
|
Roman
Italic
type weight =
Regular
Bold
Black
type t = {
family : string;
string
slant : slant;
slant
weight : weight;
weight