jmap-kit
    Preparing search index...

    Type Alias DataSourceObject

    DataSourceObject:
        | { "data:asText": string
        | null }
        | { "data:asBase64": string | null }
        | { blobId: Id; length?: UnsignedInt | null; offset?: UnsignedInt | null }

    A source of octets to use in creating a blob

    Type Declaration

    • { "data:asText": string | null }
      • data:asText: string | null

        The raw octets, must be UTF-8

    • { "data:asBase64": string | null }
      • data:asBase64: string | null

        The base64 representation of octets

    • { blobId: Id; length?: UnsignedInt | null; offset?: UnsignedInt | null }
      • blobId: Id

        The blobId to copy from

      • Optionallength?: UnsignedInt | null

        (default: remaining octets in the blog) The length of data to copy from the referenced blob

      • Optionaloffset?: UnsignedInt | null

        (default: 0) The number of octets offset into the referenced blob