UNPKG

wingman-monitor

Version:

Runtime error monitoring package with React provider that automatically reports errors to webhook endpoints

14 lines 477 B
/** * Determines whether an error should be reported based on environment and error characteristics */ export declare const shouldReportError: (error: Error, context?: any) => boolean; /** * Gets environment-based configuration for Wingman */ export declare const getEnvironmentConfig: () => { enableErrorReporting: boolean; enablePerformanceMonitoring: boolean; enableDebugLogs: boolean; apiEndpoint: string; }; //# sourceMappingURL=errorFiltering.d.ts.map