@airbrake/browser
Version:
Official Airbrake notifier for browsers
22 lines • 443 B
TypeScript
export interface INoticeFrame {
function: string;
file: string;
line: number;
column: number;
}
export interface INoticeError {
type: string;
message: string;
backtrace: INoticeFrame[];
}
export interface INotice {
id?: string;
url?: string;
error?: Error;
errors?: INoticeError[];
context?: any;
params?: any;
session?: any;
environment?: any;
}
//# sourceMappingURL=notice.d.ts.map