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

Prediction

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

Contains information regarding predicted values returned by Amazon Textract operations, including the predicted value and the confidence in the predicted value.

interface Prediction {
Confidence?: number | null;
Value?: string | null;
}

§Properties

§
Confidence?: number | null
[src]

Amazon Textract's confidence in its predicted value.

§
Value?: string | null
[src]

The predicted value of a detected object.