interface Image {
    layer: "below" | "above";
    opacity: number;
    sizex: number;
    sizey: number;
    sizing: "fill" | "contain" | "stretch";
    source: string;
    visible: boolean;
    x: string | number;
    xanchor: "left" | "center" | "right";
    xref: "paper" | XAxisName;
    y: string | number;
    yanchor: "top" | "middle" | "bottom";
    yref: "paper" | YAxisName;
}

Properties

layer: "below" | "above"
opacity: number
sizex: number
sizey: number
sizing: "fill" | "contain" | "stretch"
source: string
visible: boolean
x: string | number
xanchor: "left" | "center" | "right"
xref: "paper" | XAxisName
y: string | number
yanchor: "top" | "middle" | "bottom"
yref: "paper" | YAxisName