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 9004ec6 commit afcb629Copy full SHA for afcb629
src/post/crash-type.ts
@@ -3,5 +3,6 @@ export class CrashType {
3
static readonly dotnet = new CrashType('Windows.NET', 8);
4
static readonly electron = new CrashType('Electron', 22);
5
static readonly native = new CrashType('Windows.Native', 1);
6
+ static readonly mac = new CrashType('macOS', 13);
7
private constructor(public readonly name: string, public readonly id: number) { }
8
}
0 commit comments