gfonts-js-library/dist/css2.d.ts
2023-05-20 21:39:06 +02:00

10 lines
192 B
TypeScript

export type Variant = {
weight: number;
style: string;
};
export interface Spec {
font: string;
variants: Variant[];
}
export declare function parse_spec(input: string): Spec;