Type Alias TCanvasTextSymbol

TCanvasTextSymbol: {
    creationTime: number;
    data: {
        height: number;
        justificationType: string;
        textHeight: number;
        topLeftPoint: TPoint;
        width: number;
    };
    id: string;
    label: string;
    modificationDate: number;
    style: {
        color?: string;
        fill?: string;
        opacity?: number;
        width?: number;
        [key: string]: undefined
        | string
        | number;
    };
    type: string;
}