File size: 749 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
/* eslint-disable @typescript-eslint/no-unused-vars */
import type {
CssVariable,
Display,
NextFont,
NextFontWithVariable,
} from '../types'
type LocalFont<T extends CssVariable | undefined = undefined> = {
src:
| string
| Array<{
path: string
weight?: string
style?: string
}>
display?: Display
weight?: string
style?: string
adjustFontFallback?: 'Arial' | 'Times New Roman' | false
fallback?: string[]
preload?: boolean
variable?: T
declarations?: Array<{ prop: string; value: string }>
}
export default function localFont<
T extends CssVariable | undefined = undefined,
>(
options: LocalFont<T>
): T extends undefined ? NextFont : NextFontWithVariable {
throw new Error()
}
|