UNPKG

@manujdhull/nestjs-pkce-oauth2

Version:

A NestJS plugin to simplify OAuth2 PKCE flow integration, including decorators, guards, and token/session management.

7 lines (6 loc) 207 B
export declare class CodeVerifierStoreService { private readonly store; set(state: string, codeVerifier: string): void; get(state: string): string | undefined; delete(state: string): void; }