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

14 lines
345 B
Plaintext

export type CssVariable = `--${string}`;
export type Display = 'auto' | 'block' | 'swap' | 'fallback' | 'optional';
export type NextFont = {
className: string;
style: {
fontFamily: string;
fontWeight?: number;
fontStyle?: string;
};
};
export type NextFontWithVariable = NextFont & {
variable: string;
};