UNPKG

bugyo-cloud-client

Version:
11 lines (10 loc) 389 B
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>; }