privacy.com
Version:
Wrapper for the Privacy.com API using Axios and TypeScript
14 lines (13 loc) • 364 B
TypeScript
import { Endpoint } from "../";
export declare abstract class PostEndpoint extends Endpoint {
method: string;
path: string;
params: object;
}
/**
* A unique token to reference this transaction with later calls to void or clear the authorization.
* @remarks only used in Simulation requests
*/
export declare type TokenData = {
token: string;
};