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

Smile

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

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

interface Smile {
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 smiling or not.