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.

7 lines (6 loc) 138 B
export default interface IAuthResponse { error: string | null; query: string | null; state: string | null; code: string | null; }