UNPKG

@betha-plataforma/oauth

Version:

Biblioteca JavaScript para lidar com o fluxo do OAuth 2.0 em aplicações Web, com suporte a TypeScript.

9 lines (8 loc) 186 B
export interface AccessTokenResponse { access_token: string; expires_in: number; scope: string; token_type: string; principal?: string; refresh_token?: string; }