create project
This commit is contained in:
21
kitabcitab/node_modules/next/dist/server/font-utils.d.ts
generated
vendored
Normal file
21
kitabcitab/node_modules/next/dist/server/font-utils.d.ts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
export declare type FontManifest = Array<{
|
||||
url: string;
|
||||
content: string;
|
||||
}>;
|
||||
export declare type FontConfig = boolean;
|
||||
export declare function getFontDefinitionFromNetwork(url: string): Promise<string>;
|
||||
export declare function getFontDefinitionFromManifest(url: string, manifest: FontManifest): string;
|
||||
export declare function calculateOverrideValues(fontMetrics: any): {
|
||||
ascent: any;
|
||||
descent: any;
|
||||
lineGap: any;
|
||||
fallbackFont: string;
|
||||
};
|
||||
export declare function calculateSizeAdjustValues(fontMetrics: any): {
|
||||
ascent: any;
|
||||
descent: any;
|
||||
lineGap: any;
|
||||
fallbackFont: string;
|
||||
sizeAdjust: string;
|
||||
};
|
||||
export declare function getFontOverrideCss(url: string, css: string, useSizeAdjust?: boolean): string;
|
||||
Reference in New Issue
Block a user