UNPKG

@weiliang79/ubl-builder

Version:

Tool to create xml documents with UBL 2.1 standard

15 lines 654 B
import GenericAggregateComponent from './GenericAggregateComponent'; import { UdtQuantity, UdtIndicator } from '../types/UnqualifiedDataTypes'; type AllowedParams = { batchQuantity?: string | UdtQuantity; consumerUnitQuantity?: string | UdtQuantity; hazardousRiskIndicator?: string | UdtIndicator; }; /** * */ declare class DeliveryUnitType extends GenericAggregateComponent { constructor(content: AllowedParams); } export { DeliveryUnitType as DeliveryUnit, AllowedParams as DeliveryUnitTypeParams, DeliveryUnitType as MinimumDeliveryUnit, DeliveryUnitType as MaximumDeliveryUnit, }; //# sourceMappingURL=DeliveryUnitTypeGroup.d.ts.map