Eulergraph
    Preparing search index...

    Type Alias ImagePathAttr

    type ImagePathAttr = {
        img:
            | HTMLImageElement
            | HTMLImageElement
            | SVGImageElement
            | HTMLVideoElement
            | HTMLCanvasElement
            | ImageBitmap
            | OffscreenCanvas
            | string;
        position: PointLike;
        size: { height: number; width: number };
        type?: "image";
    }
    Index

    Properties

    Properties

    img:
        | HTMLImageElement
        | HTMLImageElement
        | SVGImageElement
        | HTMLVideoElement
        | HTMLCanvasElement
        | ImageBitmap
        | OffscreenCanvas
        | string
    position: PointLike
    size: { height: number; width: number }
    type?: "image"