UNPKG

@vfarcic/dot-ai

Version:

AI-powered development productivity platform that enhances software development workflows through intelligent automation and AI-driven assistance

17 lines 546 B
/** * PostHog Telemetry Client * * Provides anonymous usage telemetry using PostHog. * Follows a singleton pattern with lazy initialization. * PRD #343: Uses plugin system for K8s operations instead of direct @kubernetes/client-node. */ import { TelemetryService } from './types'; /** * Get or create the global telemetry instance */ export declare function getTelemetry(): TelemetryService; /** * Shutdown the global telemetry instance */ export declare function shutdownTelemetry(): Promise<void>; //# sourceMappingURL=client.d.ts.map