supertokens-node
Version:
NodeJS driver for SuperTokens core
20 lines (19 loc) • 425 B
TypeScript
// @ts-nocheck
import { APIFunction } from "../../types";
export type Response =
| {
status: "OK";
}
| {
status: "UNKNOWN_TENANT_ERROR";
}
| {
status: "INVALID_CONFIG_ERROR";
message: string;
};
export default function updateTenantCoreConfig({
stInstance,
tenantId,
options,
userContext,
}: Parameters<APIFunction>[0]): Promise<Response>;