Documentation - v1.2.0-alpha.3
    Preparing search index...

    Represents the data of an attachment.

    interface AttachmentData {
        name: string;
        originalBase64: Uint8Array;
        thumbnailBase64: Uint8Array;
        type: string;
    }
    Index

    Properties

    name: string

    The name of the attachment.

    originalBase64: Uint8Array

    The original data of the attachment in Base64 format.

    thumbnailBase64: Uint8Array

    The thumbnail data of the attachment in Base64 format.

    type: string

    The type of the attachment.