UNPKG

@yelon/auth

Version:

Simple user authentication, support Json Web Token & Simple Token.

10 lines (9 loc) 265 B
import { ITokenModel } from '../interface'; export declare class SimpleTokenModel implements ITokenModel { [key: string]: any; access_token?: string | null; expires_in?: number; refresh_token?: string; scope?: string; token_type?: string; }