UNPKG

n8n

Version:

n8n Workflow Automation Tool

10 lines (9 loc) 291 B
import type { ModuleContext, ModuleInterface } from '@n8n/decorators'; export declare class OtelModule implements ModuleInterface { init(): Promise<void>; settings(): Promise<{ enabled: boolean; }>; context(): Promise<ModuleContext>; shutdown(): Promise<void>; }