UNPKG

@nangohq/types

Version:

Types used in Nango applications

14 lines (13 loc) 289 B
import type { Endpoint } from '../api'; export interface AsyncActionResponse { id: string; statusUrl: string; } export type GetAsyncActionResult = Endpoint<{ Method: 'GET'; Path: `/action/:id`; Params: { id: string; }; Success: Record<string, any>; }>;