n8n
Version:
n8n Workflow Automation Tool
9 lines (8 loc) • 318 B
TypeScript
import type { BaseN8nModule } from '@n8n/decorators';
import { InsightsService } from './insights.service';
import './insights.controller';
export declare class InsightsModule implements BaseN8nModule {
private readonly insightsService;
constructor(insightsService: InsightsService);
initialize(): void;
}