interface ShareImageConfig {
    image: string;
    title: string;
    uuid: string;
    showTitle: boolean;
    users: string[];
}

Properties

image: string

The image URL to share.

title: string

The image title.

uuid: string

The UUID of a Document related to the image, used to determine permission to see the image title.

showTitle: boolean

If this is provided, the permissions of the related Document will be ignored and the title will be shown based on this parameter.

users: string[]

A list of user IDs to show the image to.