# ExtractTableOptionType

## Content

# Type Alias: ExtractTableOptionType

```ts
type ExtractTableOptionType = 
  | "CoefPrecision"
  | "CoefTokenization"
  | "CoefDuplicateTokens"
  | "CoefHorzOverlay"
  | "CoefVertOverlay"
  | "CoefMinimumDistanceBetweenRows"
  | "CoefMinimumDistanceBetweenCols"
  | "IncludeInvisibleText"
  | "MinimumColWidth"
  | "MinimumRowHeight";
```

Represents the type of options available for table extraction.

These options are used to configure various parameters for extracting table data,
such as precision, tokenization, and layout settings.
