Interface LazyCanvasGradient

interface LazyCanvasGradient {
    colorPoints: {
        color: string;
        position: number;
    }[];
    gradientType: string;
    points: {
        x: number;
        y: number;
    }[];
    radius: number;
    startAngle: number;
    structureType: string;
    type: string;
    toJSON(): LazyCanvasGradient;
}

Properties

colorPoints: {
    color: string;
    position: number;
}[]
gradientType: string
points: {
    x: number;
    y: number;
}[]
radius: number
startAngle: number
structureType: string
type: string

Methods