Type Alias: X12AckDispositionCode
X12AckDispositionCode = typeof
X12_ACK_DISPOSITION_CODES[keyof typeofX12_ACK_DISPOSITION_CODES]
String-literal union over X12_ACK_DISPOSITION_CODES. Used as the
type of AK9-01, IK5-01, and the disposition field on the
ack-spec/parsed-ack models.
Example
import type { X12AckDispositionCode } from "@cosyte/x12";
function isReject(code: X12AckDispositionCode): boolean {
return code === "R" || code === "M" || code === "W" || code === "X";
}