UNPKG

@weiliang79/ubl-builder

Version:

Tool to create xml documents with UBL 2.1 standard

18 lines 747 B
import GenericAggregateComponent from './GenericAggregateComponent'; import { UdtBinaryObject } from '../types/UnqualifiedDataTypes'; import { ExternalReference } from './ExternalReference'; type AllowedParams = { /** A binary large object containing an attached document */ embeddedDocumentBinaryObject?: UdtBinaryObject | string; /** A reference to an attached document that is external to the document(s) being exchanged */ externalReference?: ExternalReference; }; declare class Attachment extends GenericAggregateComponent { /** * * @param content children nodes */ constructor(content: AllowedParams); } export { Attachment, AllowedParams as AttachmentParams }; //# sourceMappingURL=Attachment.d.ts.map