Skip to content

Commit 058a35b

Browse files
authored
chore: add ps4/ps5 crash types (#132)
1 parent 83ebc5f commit 058a35b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/post/crash-type.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@ export class CrashType {
44
static readonly electron = new CrashType('Electron', 22);
55
static readonly native = new CrashType('Windows.Native', 1);
66
static readonly mac = new CrashType('macOS', 13);
7+
static readonly ps4 = new CrashType('PlayStation 4', 28);
8+
static readonly ps5 = new CrashType('PlayStation 5', 29);
79
private constructor(public readonly name: string, public readonly id: number) { }
810
}

0 commit comments

Comments
 (0)