Interface ShapePayload

interface ShapePayload {
    type: string;
    x1: number;
    y1: number;
    x2: number;
    y2: number;
    color: string;
    thickness: number;
    lineType: string;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

type: string
x1: number
y1: number
x2: number
y2: number
color: string
thickness: number
lineType: string