mpp-sdk
Version:
SDK to talk to the Memento Payments Platform
12 lines (11 loc) • 500 B
TypeScript
import { MPPConfig } from "..";
import FundingSourceEndpoint from "./funding_sources";
import UsersEndpoint from "./users";
import { AppleWalletExtensionData } from "../types";
export default class WalletEndpoint {
protected config: MPPConfig;
protected fundingSources: FundingSourceEndpoint;
protected users: UsersEndpoint;
constructor(config: MPPConfig, fundingSources: FundingSourceEndpoint, users: UsersEndpoint);
getAppleExtensionData(): Promise<AppleWalletExtensionData>;
}