UNPKG

@mintlify/models

Version:

Mintlify models

13 lines (12 loc) 348 B
export type FontConfigType = FontDetailsType | { headings?: FontDetailsType; body?: FontDetailsType; }; export type FontDetailsType = { family: string; weight?: number; url?: string; format?: FontFormat; }; export declare const fontFormats: readonly ["woff", "woff2"]; export type FontFormat = (typeof fontFormats)[number];