AxisInfo
type AxisInfo = {
tag: string;
name: string | null;
min: number;
defaultValue: number;
max: number;
}
Index
Properties
Properties
tag
tag: string
The axis' tag name, a four-character string (e.g. "wght", "wdth").
name
name: string | null
The axis' human-readable name, if provided in the font file.
min
min: number
The axis' minimum value.
defaultValue
defaultValue: number
The axis' default value.
max
max: number
The axis' maximum value.
Information about a font's variation axis.