interface IErrorCapture {
    captureException: ((error: Error, props?: Record<string, any>) => Promise<void>);
}

Implemented by

Properties

Properties

captureException: ((error: Error, props?: Record<string, any>) => Promise<void>)