UNPKG

supertokens-node

Version:
14 lines (13 loc) 334 B
// @ts-nocheck import { APIInterface, APIOptions } from "../../types"; import { UserContext } from "../../../../types"; type Response = { status: "OK"; }; export declare const userEmailVerifyPut: ( _: APIInterface, tenantId: string, options: APIOptions, userContext: UserContext ) => Promise<Response>; export {};