UNPKG

@weiliang79/ubl-builder

Version:

Tool to create xml documents with UBL 2.1 standard

13 lines 507 B
import { UdtCode } from '../types/UnqualifiedDataTypes'; import GenericAggregateComponent from './GenericAggregateComponent'; type AllowedParams = { itemClassificationCode: string | UdtCode; }; declare class CommodityClassification extends GenericAggregateComponent { /** * @param {AllowedParams} content */ constructor(content?: AllowedParams); } export { CommodityClassification, AllowedParams as CommodityClassificationParams }; //# sourceMappingURL=CommodityClassification.d.ts.map