@daystram/ratify-client
Version:
Ratify OAuth Client
9 lines (8 loc) • 317 B
TypeScript
import { AxiosResponse } from "axios";
import { IAPIClient } from "./IAPIClient";
export declare class RatifyAPIClient implements IAPIClient {
private apiClient;
constructor(issuer: string);
token(tokenRequest: object): Promise<AxiosResponse>;
logout(logoutRequest: object): Promise<AxiosResponse>;
}