interface ImageBase {
    alignment?: "left" | "center" | "right";
    data?: Uint8Array;
    height: number;
    horizontalMargin?: number;
    src?: string;
    type: "image";
    width: number;
}

Properties

alignment?: "left" | "center" | "right"
data?: Uint8Array
height: number
horizontalMargin?: number
src?: string
type: "image"
width: number

Generated using TypeDoc