DocsReact Corecore-typesAttachment
Package: @hexos/react-core

File or image attachment associated with a message.

Supports file and image types with either a URL reference or base64-encoded data.

interface Attachment {
    type: 'file' | 'image';
    name: string;
    url?: string;
    data?: string;
    mimeType?: string;
}

type

'file' | 'image'

name

string

url

string

data

string

mimeType

string