File size: 694 Bytes
04f98c3
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export default class Font {
    static parse(font?: string, inherit?: string | Font): Font;
    static readonly styles = "normal|italic|oblique|inherit";
    static readonly variants = "normal|small-caps|inherit";
    static readonly weights = "normal|bold|bolder|lighter|100|200|300|400|500|600|700|800|900|inherit";
    readonly fontFamily: string;
    readonly fontSize: string;
    readonly fontStyle: string;
    readonly fontWeight: string;
    readonly fontVariant: string;
    constructor(fontStyle: string, fontVariant: string, fontWeight: string, fontSize: string, fontFamily: string, inherit?: string | Font);
    toString(): string;
}
//# sourceMappingURL=Font.d.ts.map