UNPKG

@betha-plataforma/oauth

Version:

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

14 lines (13 loc) 275 B
export interface IntrospectResponse { client: { attributes: Record<string, any>; client_id: string; name: string; }; expires_in: string; scopes: string; user: { attributes: Record<string, any>; id: string; }; }