UNPKG

js-pkce

Version:

A package that makes using the OAuth2 PKCE flow easier

9 lines (8 loc) 198 B
export default interface ITokenResponse { access_token: string; expires_in: number; refresh_expires_in?: number; refresh_token?: string; scope: string; token_type: string; }