UNPKG

nestjs-oauth2

Version:

NestJS OAuth2 Client

6 lines (5 loc) 152 B
import { State } from "./state.interface"; export interface StateService { create(): Promise<State>; verify(state: string): Promise<boolean>; }