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

Beard

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

Indicates whether or not the face has a beard, and the confidence level in the determination.

interface Beard {
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 has beard or not.