instabug-reactnative
Version:
React Native plugin for integrating the Instabug SDK
17 lines (15 loc) • 422 B
text/typescript
import type { NonFatalErrorLevel } from '../utils/Enums';
export interface NonFatalOptions {
/**
* An Optional extra user attributes attached to the crash
* */
userAttributes?: Record<string, string>;
/**
* An Optional key used to customize how crashes are grouped together
* */
fingerprint?: string;
/**
* An Optional different severity levels for errors
* */
level?: NonFatalErrorLevel;
}