UNPKG

supertokens-node

Version:
18 lines (17 loc) 365 B
// @ts-nocheck import { APIFunction } from "../../types"; type Response = | { status: "OK"; } | { status: "INVALID_PASSWORD_ERROR"; error: string; }; export declare const userPasswordPut: ({ stInstance, tenantId, options, userContext, }: Parameters<APIFunction>[0]) => Promise<Response>; export {};