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://raw.githubusercontent.com/takker99/deno-gyazo/0.1.1/mod.ts";

Image data

interface Image {
created_at: Timestamp;
image_id: string;
metadata: {
app: string | null;
title: string;
url: string | null;
desc: string;
original_title: string | null;
original_url: string | null;
}
;
ocr: {
locale: string;
description: string;
}
| {
locale: null;
description: "";
}
;
permalink_url: string;
thumb_url: string;
type: "jpg";
url: string;
}

§Properties

§
created_at: Timestamp
[src]

timestamp which the image is created at

§
image_id: string
[src]

image id

§
metadata: {
app: string | null;
title: string;
url: string | null;
desc: string;
original_title: string | null;
original_url: string | null;
}
[src]

image metadata

§
ocr: {
locale: string;
description: string;
}
| {
locale: null;
description: "";
}
[src]

OCR result

§
thumb_url: string
[src]

thumbnail url

§
type: "jpg"
[src]

file extension

§
url: string
[src]

image url