supertokens-node
Version:
NodeJS driver for SuperTokens core
14 lines (13 loc) • 326 B
TypeScript
// @ts-nocheck
import { APIInterface, APIOptions } from "../../types";
import { UserContext } from "../../../../types";
type Response = {
status: "OK";
};
export declare const userMetadataPut: (
_: APIInterface,
___: string,
options: APIOptions,
userContext: UserContext
) => Promise<Response>;
export {};