Browse Source

CrashReport structure does not match API output

Electron 1.7

Docs:
```typescript
  interface CrashReport {
    date: string;
    ID: number;
  }
```
Actual output of `getLastCrashReport`:
```javascript
{ 
  date: 2018-01-26T21:50:05.000Z,
  id: '989d0469-9eb7-4f70-ba58-3425bc6ffa3b' 
}
```
Tim Fish 7 years ago
parent
commit
e3383c82d1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/api/structures/crash-report.md

+ 2 - 2
docs/api/structures/crash-report.md

@@ -1,4 +1,4 @@
 # CrashReport Object
 
-* `date` String
-* `ID` Integer
+* `date` Date
+* `id` String