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

Image

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

Describe image data.

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

§Properties

§
data?: Uint8Array
[src]

Image data in format determined by the mime type. Currently, the format will always be "image/png", but this might change in the future.

§
mimeType?: string
[src]

The mime-type of the image data.