mirror of
https://github.com/electron/electron.git
synced 2026-02-17 02:21:37 -05:00
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'
}
```
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# CrashReport Object
|
||||
|
||||
* `date` String
|
||||
* `ID` Integer
|
||||
* `date` Date
|
||||
* `id` String
|
||||
|
||||
Reference in New Issue
Block a user