Files
zyt/TongjiUniApp/node_modules/parse-css-font/dist/index.d.ts
T
2026-08-11 17:41:36 +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;