@airbrake/browser
Version:
Official Airbrake notifier for browsers
14 lines • 467 B
TypeScript
import { INotice } from './notice';
export declare function jsonifyNotice(notice: INotice, { maxLength, keysBlocklist, keysAllowlist }?: {
maxLength?: number;
keysBlocklist?: any[];
keysAllowlist?: any[];
}): string;
interface ITruncatorOptions {
level?: number;
keysBlocklist?: any[];
keysAllowlist?: any[];
}
export declare function truncate(value: any, opts?: ITruncatorOptions): any;
export {};
//# sourceMappingURL=jsonify_notice.d.ts.map