/** * Contains a single signature that may be part of a multi-signature. * Taken from https://xrpl.org/transaction-common-fields.html#signers-field. * * @property Signer - Contains the actual signature data. */ export default interface MultiSignature { /** * Contains the actual signature data. * * @memberof MultiSignature */ readonly Signer: { /** * The address associated with this signature. * * @type {string} */ readonly Account: string; /** * A signature for the transaction. * * @type {string} */ readonly TxnSignature: string; /** * The public key used to create this signature. * * @type {string} */ readonly SigningPubKey: string; }; } //# sourceMappingURL=MultiSignature.d.ts.map