Documentation / @facturometro/validator / UncheckedLine
Type Alias: UncheckedLine ​
UncheckedLine =
UncheckedCreditNoteLine|UncheckedInvoiceLine
Defined in: packages/validator/src/engine/view.ts:56
An invoice line or a credit note line; the view hides which.
Example ​
ts
import type { UncheckedLine } from '@facturometro/validator';
const ids = (lines: readonly UncheckedLine[]) => lines.map((line) => line.id);