UNPKG

authvisage-sdk

Version:
19 lines 407 B
/** * PKCE Challenge Pair structure */ interface PKCEPair { codeVerifier: string; codeChallenge: string; } /** * Utility class for handling PKCE authentication */ export declare class PKCEHandler { private static readonly PKCE_COOKIE_NAME; /** * Generates a PKCE challenge pair */ static generate(): Promise<PKCEPair>; } export {}; //# sourceMappingURL=pkceHandler.d.ts.map