UNPKG

@weiliang79/ubl-builder

Version:

Tool to create xml documents with UBL 2.1 standard

27 lines 853 B
import GenericAggregateComponent from './GenericAggregateComponent'; import { UdtText } from '../types/UnqualifiedDataTypes'; type AllowedParams = { /** An address line expressed as unstructured text */ line?: string | UdtText; }; /** * cac:AddressLine * Namespace: urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2 * Type: cac:AddressLineType * See more: http://www.datypic.com/sc/ubl21/e-cac_AddressLine.html */ declare class AddressLine extends GenericAggregateComponent { constructor(content: AllowedParams); /** * * @param {boolean} raw as raw */ getLine(raw?: boolean): any; /** * * @param {string | UdtText} value */ setLine(value: string | UdtText): void; } export { AddressLine, AllowedParams as AddressLineParams }; //# sourceMappingURL=AddressLine.d.ts.map