@phenixrts/sdk
Version:
JavaScript SDK
10 lines (9 loc) • 402 B
TypeScript
import { IEdgeAuth } from './EdgeAuthToken';
import { EncodedEdgeToken } from './EncodedEdgeToken';
export default class EdgeAuth {
private static _logger;
static parseToken(token: EncodedEdgeToken): IEdgeAuth | undefined;
static getUri(parsedToken: IEdgeAuth): URL | null;
static getTenancy(parsedToken: IEdgeAuth): string;
static isValidToken(token: EncodedEdgeToken): boolean;
}