bpms_site/.svn/pristine/a9/a9065d83ce15c1e0af498d546e8e97d1c0f9f76d.svn-base
2025-11-02 16:38:49 +03:30

9 lines
314 B
Plaintext

/**
* Validates and gets the data for each font axis required to generate the Google Fonts URL.
*/
export declare function getFontAxes(fontFamily: string, weights: string[], styles: string[], selectedVariableAxes?: string[]): {
wght?: string[];
ital?: string[];
variableAxes?: [string, string][];
};