UNPKG

supertokens-node

Version:
10 lines (9 loc) 319 B
// @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>;