UNPKG

pkce-x

Version:

PKCE is a security extension to OAuth 2.0 for public clients on mobile devices, designed to prevent interception of the authorisation code by a malicious application that has sneaked into the same device.

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