Interface LazyCanvasPattern

interface LazyCanvasPattern {
    pattern: {
        data: string | LazyCanvas;
        type: string;
    };
    patternType:
        | "repeat"
        | "repeat-x"
        | "repeat-y"
        | "no-repeat";
    type: string;
    toJSON(): LazyCanvasPattern;
}

Properties

Methods

Properties

pattern: {
    data: string | LazyCanvas;
    type: string;
}
patternType:
    | "repeat"
    | "repeat-x"
    | "repeat-y"
    | "no-repeat"
type: string

Methods