create project
This commit is contained in:
21
kitabcitab/node_modules/@next/font/dist/local/index.d.ts
generated
vendored
Normal file
21
kitabcitab/node_modules/@next/font/dist/local/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
import type { CssVariable, Display, NextFont, NextFontWithVariable } from '../types';
|
||||
declare 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;
|
||||
export {};
|
||||
Reference in New Issue
Block a user