next
Version:
The React Framework
9 lines (8 loc) • 572 B
TypeScript
import React from 'react';
export declare function getComponentStack(error: Error): string | undefined;
export declare function setComponentStack(error: Error, stack: string): void;
export declare function getOwnerStack(error: Error): string | null | undefined;
export declare function setOwnerStack(error: Error, stack: string | null): void;
export declare function coerceError(value: unknown): Error;
export declare function setOwnerStackIfAvailable(error: Error): void;
export declare function decorateDevError(thrownValue: unknown, errorInfo: React.ErrorInfo): Error;