UNPKG

@payburner/payburner-payid-client-core

Version:
10 lines 405 B
import { AddressDetailsType } from "./AddressDetailsType"; import { CryptoAddressDetails } from "./CryptoAddressDetails"; import { AchAddressDetails } from "./AchAddressDetails"; export interface Address { paymentNetwork: string; environment?: string; addressDetailsType: AddressDetailsType; addressDetails: CryptoAddressDetails | AchAddressDetails; } //# sourceMappingURL=Address.d.ts.map