@roomy-chat/sdk
    Preparing search index...

    Class Image

    An image defined by a URI.

    Hierarchy (View Summary)

    Index

    Accessors

    • get alt(): undefined | string

      The alt text of the image

      Returns undefined | string

    • set alt(alt: string): void

      Set the alt text of the image

      Parameters

      • alt: string

      Returns void

    • get height(): undefined | number

      The height of the image.

      Returns undefined | number

    • set height(height: number): void

      Set the height of the image.

      Parameters

      • height: number

      Returns void

    • get softDeleted(): boolean

      Returns boolean

    • set softDeleted(deleted: boolean): void

      Parameters

      • deleted: boolean

      Returns void

    • get uri(): string

      The URI of the image. This could be an HTTP(S) URL or a base64 encoded data URI, or any other kind of URI.

      Returns string

    • set uri(uri: string): void

      Set the URI of the image.

      Parameters

      • uri: string

      Returns void

    • get width(): undefined | number

      The width of the image.

      Returns undefined | number

    • set width(width: undefined | number): void

      Set the width of the image.

      Parameters

      • width: undefined | number

      Returns void

    Methods

    • Register a callback that will be run when the entity is committed.

      Parameters

      • listener: () => void

      Returns () => void

      A function that may be called to unregister the callback.

    • Checks whether the given entity matches this wrapper type.

      The default implementation is to return true for every entity, but some wrappers will override it to check for the existence of certain marker components.

      Parameters

      Returns boolean

    General

    • get id(): `leaf:${string}`

      The string entity ID.

      Returns `leaf:${string}`

    • Commit any changes made to the entity.

      Important: You must call commit after making changes in order for those changes to be immediately applied, reacted to, and synced to network and/or storage.

      Returns void

    Advanced

    entity: Entity

    The underlying Leaf Entity.

    peer: Peer

    The leaf peer instance.