Decorator for adding error boundary protection to methods.
export declare function withErrorBoundary<T extends (...args: any[]) => any>(context?: ErrorContext): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor;
ErrorContext
Was this page helpful?