bugyo-cloud-client
Version:
HTTP client for Bugyo Cloud
11 lines (10 loc) • 389 B
TypeScript
import { BugyoCloudClient } from "../../bugyo-cloud-client";
import { EndpointName } from "../../config";
import { BaseEndpoint } from "./base-endpoint";
/**
* The page contains "__RequestVerificationToken"
*/
export declare abstract class TokenPage extends BaseEndpoint {
protected abstract get EndpointName(): EndpointName;
invoke(client: BugyoCloudClient): Promise<string>;
}