UNPKG

supertokens-node

Version:
8 lines (7 loc) 346 B
// @ts-nocheck import type { VerifySessionOptions } from ".."; import type { SessionRequest } from "../../../framework/express/framework"; import type { NextFunction, Response } from "express"; export declare function verifySession( options?: VerifySessionOptions ): (req: SessionRequest, res: Response, next: NextFunction) => Promise<void>;