@fishjam-cloud/js-server-sdk - v0.29.0
    Preparing search index...

    Interface Image

    Image

    interface Image {
        height?: null | number;
        id?: null | string;
        imageId: string;
        type: "image";
        width?: null | number;
    }
    Index

    Properties

    height?: null | number

    Height of the image in pixels. If width is not explicitly provided, the image will automatically adjust its width to maintain its original aspect ratio relative to the height.

    Image

    id?: null | string

    Id of a component.

    Image

    imageId: string

    Id of an image. It identifies an image registered using a register image request.

    Image

    type: "image"

    Image

    width?: null | number

    Width of the image in pixels. If height is not explicitly provided, the image will automatically adjust its height to maintain its original aspect ratio relative to the width.

    Image