UNPKG

baasic-sdk-javascript

Version:

JavaScript SDK provides core functionality for building web and mobile applications on [Baasic](http://www.baasic.com/).

14 lines (13 loc) 315 B
export declare const TokenTypes: { Access: string; Refresh: string; }; export declare type TokenType = "access" | "refresh"; export interface IToken { expireTime?: number; expires_in?: number; sliding_window?: number; token: string; tokenUrl: string; type: TokenType; }