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

18 lines
504 B
Plaintext

type FontOptions = {
fontFamily: string;
weights: string[];
styles: string[];
display: string;
preload: boolean;
selectedVariableAxes?: string[];
fallback?: string[];
adjustFontFallback: boolean;
variable?: string;
subsets: string[];
};
/**
* Validate the data recieved from next-swc next-transform-font on next/font/google calls
*/
export declare function validateGoogleFontFunctionCall(functionName: string, fontFunctionArgument: any): FontOptions;
export {};