uni-ticket-system/node_modules/parse-css-font/dist/index.d.ts
2023-12-05 10:11:10 +08:00

14 lines
315 B
TypeScript

export interface ISystemFont {
system: string;
}
export interface IFont {
style?: string;
variant?: string;
weight?: string;
stretch?: string;
size?: string;
lineHeight?: string | number;
family?: string[];
}
export default function parseCSSFont(value: string): ISystemFont | IFont;