UNPKG

rauth-core

Version:

13 lines (12 loc) 368 B
export declare type Mode = 'OnlyAccessToken' | 'Token'; export declare type SessionId = string; export declare type Scope = string; export declare type UserID = string; export declare type Data = { [prop: string]: any; }; export declare type Meta = { [prop: string]: any; }; export declare type AccessToken = string; export declare type RefreshToken = string;