@dotgov/core
Version:
DGS core.
12 lines (11 loc) • 371 B
TypeScript
export declare class Auth {
expires: string;
expiresIn: number;
issued: string;
token: string;
tokenType: string;
role: string;
username: string;
constructor(expires: string, expiresIn: number, issued: string, token: string, tokenType: string, role: string, username: string);
static fromResponse(response: Object): Auth;
}