Interface ITextOptions

interface ITextOptions {
    font: string;
    fontSize: number;
    fontWeight: 200 | 500 | 600;
    foregroundColor?: string;
}

Properties

font: string
fontSize: number
fontWeight: 200 | 500 | 600
foregroundColor?: string