Files
muzak/node_modules/@next/font/dist/google/get-font-axes.d.ts
T
2025-07-02 11:28:41 +02:00

9 lines
314 B
TypeScript

/**
* 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][];
};