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

Sunglasses

import type { Sunglasses } from "https://aws-api.deno.dev/v0.3/services/rekognition.ts?docs=full";

Indicates whether or not the face is wearing sunglasses, and the confidence level in the determination.

interface Sunglasses {
Confidence?: number | null;
Value?: boolean | null;
}

§Properties

§
Confidence?: number | null
[src]

Level of confidence in the determination.

§
Value?: boolean | null
[src]

Boolean value that indicates whether the face is wearing sunglasses or not.