/opt/canhelp/node_modules/next/dist/compiled/@next/font/dist/local
Edit: /opt/canhelp/node_modules/next/dist/compiled/@next/font/dist/local/index.d.ts (703B)
import type { CssVariable, Display, NextFont, NextFontWithVariable } from '../types';
type LocalFont
= {
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(options: LocalFont): T extends undefined ? NextFont : NextFontWithVariable;
export {};