forked from sagnik/Project_Astral
8 lines
269 B
TypeScript
8 lines
269 B
TypeScript
/** An error emitted by Sentry SDKs and related utilities. */
|
|
export declare class SentryError extends Error {
|
|
message: string;
|
|
/** Display name of this error instance. */
|
|
name: string;
|
|
constructor(message: string);
|
|
}
|
|
//# sourceMappingURL=error.d.ts.map
|