uni-ticket-system/node_modules/parse-css-font/dist/index.d.ts

14 lines
315 B
TypeScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
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;