UNPKG

vulcain-corejs

Version:
11 lines (10 loc) 445 B
import { AbstractServiceCommand } from "../../commands/abstractServiceCommand"; import { UserToken } from '../securityContext'; export declare class VerifyTokenParameter { token: string; tenant: string; } export declare class ApiKeyVerifyCommand extends AbstractServiceCommand { static commandName: string; run(apiKeyServiceName: string, apiKeyServiceVersion: string, data: VerifyTokenParameter): Promise<UserToken>; }