supertokens-node
Version:
NodeJS driver for SuperTokens core
19 lines (18 loc) • 434 B
TypeScript
// @ts-nocheck
import { APIInterface, APIOptions } from "../../types";
import { UserContext } from "../../../../types";
type Response =
| {
status: "OK";
}
| {
status: "INVALID_PASSWORD_ERROR";
error: string;
};
export declare const userPasswordPut: (
_: APIInterface,
tenantId: string,
options: APIOptions,
userContext: UserContext
) => Promise<Response>;
export {};