n8n
Version:
n8n Workflow Automation Tool
10 lines (9 loc) • 418 B
TypeScript
import type { OtelSettingsRequest } from '../../../types';
import type { PublicAPIEndpoint } from '../../shared/handler.types';
type OtelHandlers = {
getOtelSettings: PublicAPIEndpoint<OtelSettingsRequest.Get>;
updateOtelSettings: PublicAPIEndpoint<OtelSettingsRequest.Update>;
testOtelTrace: PublicAPIEndpoint<OtelSettingsRequest.Test>;
};
declare const otelHandlers: OtelHandlers;
export = otelHandlers;