@obelisk/client
Version:
Typescript client to interact with Obelisk on a higher level than the regular ReST API calls.
18 lines (17 loc) • 418 B
TypeScript
/**
* @hidden
*/
export declare class TokenResponse {
access_token?: string;
expires_in?: number;
id_token?: string;
'not-before-policy'?: number;
refresh_token?: string;
refresh_expires_in?: number;
scope?: string;
session_state?: string;
state?: string;
token_type?: string;
code?: string;
constructor(url: string, flow: 'implicit' | 'standard');
}