@gobistories/gobi-web-integration
Version:
This library will let you put your Gobi stories on your site.
13 lines (12 loc) • 466 B
TypeScript
export declare type FontSource = 'google' | 'system' | 'custom';
export declare type Font = {
key: string;
family: string;
weight: number;
url: string;
source: FontSource;
};
export declare const CUSTOM_FONT_FAMILY_SUFFIX = "_gobi_custom";
export declare const googleFontFamilies: Record<string, string>;
export declare const googleFontWeights: Record<string, number | undefined>;
export declare const systemFontFamilies: Record<string, string>;