UNPKG

@weiliang79/ubl-builder

Version:

Tool to create xml documents with UBL 2.1 standard

24 lines 877 B
import GenericAggregateComponent from './GenericAggregateComponent'; import { UdtIdentifier, UdtText } from '../types/UnqualifiedDataTypes'; import { Country } from './CountryTypeGroup'; import { AddressLine } from './AddressLine'; interface AllowedParams { id?: string | UdtIdentifier; streetName?: string | UdtText; AdditionalStreetName?: string | UdtText; cityName?: string | UdtText; postalZone?: string | UdtText; countrySubentity?: string | UdtText; countrySubentityCode?: string | UdtText; addressLine?: AddressLine[]; country?: Country; } /** * */ declare class PostalAddress extends GenericAggregateComponent { constructor(content: AllowedParams); addAddressLine(value: AddressLine | string): this; } export { PostalAddress, AllowedParams as PostalAddressTypeParams, }; //# sourceMappingURL=PostalAddressTypeGroup.d.ts.map