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

DocumentReadFeatureTypes

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

Specifies the type of Amazon Textract features to apply. If you chose TEXTRACT_ANALYZE_DOCUMENT as the read action, you must specify one or both of the following values:

  • TABLES - Returns additional information about any tables that are detected in the input document.
  • FORMS - Returns additional information about any forms that are detected in the input document.
type DocumentReadFeatureTypes = "TABLES" | "FORMS" | cmnP.UnexpectedEnumValue;

§Type

§
"TABLES" | "FORMS" | cmnP.UnexpectedEnumValue
[src]