mpp-sdk
Version:
SDK to talk to the Memento Payments Platform
7 lines (6 loc) • 312 B
TypeScript
import { BaseEndpoint } from "./base.js";
import { ProjectInvite } from "../types";
export default class InvitesEndpoint extends BaseEndpoint {
getById(id: string): Promise<import("../types").MPPResult<ProjectInvite>>;
accept(id: string, token: string): Promise<import("../types").MPPResult<unknown>>;
}