n8n
Version:
n8n Workflow Automation Tool
8 lines (7 loc) • 315 B
TypeScript
import type { InsightsRequest } from '../../../../public-api/types';
import type { PublicAPIEndpoint } from '../../shared/handler.types';
type InsightsHandlers = {
getInsightsSummary: PublicAPIEndpoint<InsightsRequest.GetSummary>;
};
declare const insightsHandlers: InsightsHandlers;
export = insightsHandlers;