Skip to content

Commit e73f473

Browse files
committed
chore: update docs
1 parent cfcd55b commit e73f473

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

src/models/SessionMetadata.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ export interface SessionMetadata {
4343
*/
4444
launchDuration: number;
4545
/**
46-
* number of bugs in the session
46+
* number of bugs in the session (iOS only)
4747
*/
4848
bugsCount?: number;
4949
/**
50-
* number of fetal crashes in the session
50+
* number of fetal crashes in the session (iOS only)
5151
*/
5252
fatalCrashCount?: number;
5353
/**
54-
* number of out of memory crashes in the session
54+
* number of out of memory crashes in the session (iOS only)
5555
*/
5656
oomCrashCount?: number;
5757
}

src/utils/Enums.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,12 @@ export enum StringKey {
236236
export enum LaunchType {
237237
hot = constants.hot,
238238
cold = constants.cold,
239+
/**
240+
* iOS only
241+
*/
239242
unknown = constants.unknown,
240243
/**
241-
* android only
244+
* Android only
242245
*/
243246
warm = constants.warm,
244247
}

0 commit comments

Comments
 (0)