UNPKG

@weiliang79/ubl-builder

Version:

Tool to create xml documents with UBL 2.1 standard

22 lines 811 B
import GenericAggregateComponent from './GenericAggregateComponent'; import { UdtIdentifier, UdtName, UdtCode } from '../types/UnqualifiedDataTypes'; import { JurisdictionRegionAddress } from './AddressTypeGroup'; type AllowedParams = { id: string | UdtIdentifier; name: string | UdtName; corporateRegistrationTypeCode: string | UdtCode; jurisdictionRegionAddresses: JurisdictionRegionAddress; }; /** * */ declare class CorporateRegistrationScheme extends GenericAggregateComponent { constructor(content: AllowedParams); /** * * @param value */ addJurisdictionRegionAddress(value: JurisdictionRegionAddress): void; } export { CorporateRegistrationScheme, AllowedParams as CorporateRegistrationSchemeParams }; //# sourceMappingURL=CorporateRegistrationScheme.d.ts.map