supertokens-node
Version:
NodeJS driver for SuperTokens core
12 lines (11 loc) • 353 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>;