6 lines
631 B
TypeScript
6 lines
631 B
TypeScript
|
|
import type { FontDefinition, FontWeight, RemoteFontOptions, FontsourceFontOptions, LocalFontOptions } from '../types.js';
|
||
|
|
export declare function google<const W extends FontWeight = FontWeight>(family: string, options?: RemoteFontOptions<W>): FontDefinition;
|
||
|
|
export declare function bunny<const W extends FontWeight = FontWeight>(family: string, options?: RemoteFontOptions<W>): FontDefinition;
|
||
|
|
export declare function fontsource<const W extends FontWeight = FontWeight>(family: string, options?: FontsourceFontOptions<W>): FontDefinition;
|
||
|
|
export declare function local(family: string, options: LocalFontOptions): FontDefinition;
|