Type Alias: JsonFontSource
type JsonFontSource =
| JsonBinarySource
| {
google: {
family: string;
italic?: boolean;
weight?: number;
};
};
A font face source. Adds Google Fonts loading on top of JsonBinarySource.
type JsonFontSource =
| JsonBinarySource
| {
google: {
family: string;
italic?: boolean;
weight?: number;
};
};
A font face source. Adds Google Fonts loading on top of JsonBinarySource.