interface ImageBlock {
    format: "gif" | "jpeg" | "png" | "webp";
    source: BytesImageSource;
}

Properties

Properties

format: "gif" | "jpeg" | "png" | "webp"