UNPKG

js-pkce

Version:

A package that makes using the OAuth2 PKCE flow easier

10 lines (9 loc) 233 B
export default interface IConfig { client_id: string; redirect_uri: string; authorization_endpoint: string; token_endpoint: string; revoke_endpoint?: string; requested_scopes: string; storage?: Storage; }