UNPKG

supertokens-node

Version:
17 lines (16 loc) 375 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>;