n8n
Version:
n8n Workflow Automation Tool
13 lines (12 loc) • 418 B
TypeScript
import { type AuthenticatedRequest } from '@n8n/db';
import type { PublicAPIEndpoint } from '../../shared/handler.types';
type GetDiscoverRequest = AuthenticatedRequest<{}, {}, {}, {
include?: string;
resource?: string;
operation?: string;
}>;
type DiscoverHandlers = {
getDiscover: PublicAPIEndpoint<GetDiscoverRequest>;
};
declare const discoverHandlers: DiscoverHandlers;
export = discoverHandlers;