@codedoc/core
Version:
Create beautiful modern documentation websites.
18 lines (17 loc) • 443 B
TypeScript
import { RendererLike } from '@connectv/html';
export interface FontOptions {
url: string;
name: string;
fallback?: string;
}
export interface IconFontOptions {
url: string;
name: string;
outline?: string;
}
export interface FontsOptions {
text?: FontOptions;
code?: FontOptions;
icon?: IconFontOptions;
}
export declare function Fonts(options: FontsOptions, renderer: RendererLike<any, any>): HTMLElement;