We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfb189a commit 8285b38Copy full SHA for 8285b38
packages/platforms/react-native/lib/NativeBugsnagPerformance.ts
@@ -3,11 +3,11 @@ import { TurboModuleRegistry } from 'react-native'
3
4
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions
5
export type DeviceInfo = {
6
- arch?: string
7
- model?: string
8
- versionCode?: string // Android only
9
- bundleVersion?: string // iOS only
10
- bundleIdentifier?: string
+ arch: string | undefined
+ model: string | undefined
+ versionCode: string | undefined // Android only
+ bundleVersion: string | undefined // iOS only
+ bundleIdentifier: string | undefined
11
}
12
13
export interface Spec extends TurboModule {
0 commit comments