UNPKG

@nangohq/types

Version:

Types used in Nango applications

14 lines (13 loc) 264 B
import type { Endpoint } from '../api'; export type PatchOnboarding = Endpoint<{ Method: 'PATCH'; Path: '/api/v1/onboarding'; Querystring: { env: string; }; Success: { data: { success: boolean; }; }; }>;