Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Blob

import type { Blob } from "https://googleapis.deno.dev/v1/ces:v1.ts";

Represents a blob input or output in the conversation.

interface Blob {
data?: Uint8Array;
mimeType?: string;
}

§Properties

§
data?: Uint8Array
[src]

Required. Raw bytes of the blob.

§
mimeType?: string
[src]

Required. The IANA standard MIME type of the source data.