UNPKG

n8n

Version:

n8n Workflow Automation Tool

12 lines (11 loc) 543 B
import type { TestRunRequest } from '../../../types'; import type { PublicAPIEndpoint } from '../../shared/handler.types'; type EvaluationsHandlers = { getTestRuns: PublicAPIEndpoint<TestRunRequest.GetMany>; getTestRun: PublicAPIEndpoint<TestRunRequest.GetOne>; getTestCases: PublicAPIEndpoint<TestRunRequest.GetCases>; createTestRun: PublicAPIEndpoint<TestRunRequest.Create>; cancelTestRun: PublicAPIEndpoint<TestRunRequest.Cancel>; }; declare const evaluationsHandlers: EvaluationsHandlers; export = evaluationsHandlers;