UNPKG

supertokens-node

Version:
18 lines (17 loc) 444 B
// @ts-nocheck import { APIInterface, APIOptions } from "../../types"; import { UserContext } from "../../../../types"; export type Response = | { status: "OK"; didConfigExist: boolean; } | { status: "UNKNOWN_TENANT_ERROR"; }; export default function deleteThirdPartyConfig( _: APIInterface, tenantId: string, options: APIOptions, userContext: UserContext ): Promise<Response>;