cityssm/pdf-form-extract

View on GitHub
types.ts

Summary

Maintainability
A
0 mins
Test Coverage
interface PdfFieldObject {
  name: string
  value: string
  [property: string]: unknown
}

export type PdfFieldObjects = Record<string, PdfFieldObject[]>

export interface ExtractFormFieldOptions {
  useFieldName?: boolean
}