10 lines
184 B
TypeScript
10 lines
184 B
TypeScript
export type PdfFieldMappingRow = {
|
|
catalogFormId: number
|
|
fields: Record<string, string>
|
|
}
|
|
|
|
export type PdfFieldMappingFile = {
|
|
version: number
|
|
mappings: PdfFieldMappingRow[]
|
|
}
|