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