/** * Describes a signer within the list of signers specified in a multi-signature. * Taken from https://xrpl.org/signerlist.html#signerentry-object. * * @property Account - An XRP Ledger address whose signature contributes to the multi-signature. It does * not need to be a funded address in the ledger. * @property SignerWeight - The weight of a signature from this signer. */ export default interface SignerEntry { readonly Account: string; readonly SignerWeight: number; } //# sourceMappingURL=SignerEntry.d.ts.map