UNPKG

supertokens-website

Version:

frontend sdk for website to be used for auth solution.

8 lines (7 loc) 352 B
import { RecipeInterface, EventHandler, RecipePreAPIHookFunction, RecipePostAPIHookFunction } from "./types"; export default function RecipeImplementation(recipeImplInput: { preAPIHook: RecipePreAPIHookFunction; postAPIHook: RecipePostAPIHookFunction; onHandleEvent: EventHandler; sessionExpiredStatusCode: number; }): RecipeInterface;