UNPKG

@airbrake/browser

Version:
22 lines 443 B
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