UNPKG

@weiliang79/ubl-builder

Version:

Tool to create xml documents with UBL 2.1 standard

16 lines 658 B
import GenericAggregateComponent from './GenericAggregateComponent'; import { UdtIdentifier, UdtText, UdtDate, UdtTime } from '../types/UnqualifiedDataTypes'; type AllowedParams = { /** An identifier for this signature. */ name: string | UdtIdentifier; notes: string[] | UdtText[]; validationDate: string | UdtDate; validationTime: string | UdtTime; validatorID: string | UdtIdentifier; canonicalizationMethod: string | UdtText; }; declare class Signature extends GenericAggregateComponent { constructor(content: AllowedParams); } export { Signature, AllowedParams as SignatureParams }; //# sourceMappingURL=Signature.d.ts.map