chore(dependencies): update package versions for improved compatibility (#332)

This commit is contained in:
Giancarlo Buomprisco
2025-08-27 18:34:44 +07:00
committed by GitHub
parent f9ebe2f927
commit 9ce150609e
22 changed files with 813 additions and 780 deletions

View File

@@ -6,12 +6,17 @@
export abstract class MonitoringService {
/**
* Capture an exception
* @param error
* @param extra
* @param error - The error to capture
* @param extra - Extra information to capture with the error and be passed along to the capture event
* @param config - Options to pass along to the service for additional configuration
*/
abstract captureException<Extra extends object>(
abstract captureException<
Extra extends Record<string, unknown>,
Config extends Record<string, unknown>,
>(
error: Error & { digest?: string },
extra?: Extra,
config?: Config,
): unknown;
/**