UNPKG

@nangohq/types

Version:

Types used in Nango applications

13 lines (12 loc) 262 B
import type { Endpoint } from '../api.js'; export type PostOrbWebhooks = Endpoint<{ Method: 'POST'; Path: '/api/v1/orb/webhooks'; Body: any; Headers: { 'X-Orb-Signature': string; }; Success: { success: boolean; }; }>;