UNPKG

@payburner/payburner-payid-client

Version:
12 lines (11 loc) 559 B
import { PaymentInformation } from "../interfaces/PaymentInformation"; import { Address } from "../interfaces/Address"; import { SignedPayIDAddress } from "../interfaces/SignedPayIDAddress"; export declare class ResolvedPayID implements PaymentInformation { constructor(addresses: Address[], payId?: string, memo?: string, proofOfSignature?: string, verifiedAddresses?: SignedPayIDAddress[]); addresses: Address[]; memo?: string; payId?: string; proofOfControlSignature?: string; verifiedAddresses?: SignedPayIDAddress[]; }