gfonts-js-library/dist/css2.d.ts

10 lines
192 B
TypeScript
Raw Normal View History

2023-05-20 19:39:06 +00:00
export type Variant = {
weight: number;
style: string;
};
export interface Spec {
font: string;
variants: Variant[];
}
export declare function parse_spec(input: string): Spec;