From e3383c82d13cc4cd68808be5fd1b88af01481069 Mon Sep 17 00:00:00 2001 From: Tim Fish Date: Sat, 27 Jan 2018 12:21:09 +0100 Subject: [PATCH] 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' } ``` --- docs/api/structures/crash-report.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/structures/crash-report.md b/docs/api/structures/crash-report.md index b26d4adeca70..5248cba8043f 100644 --- a/docs/api/structures/crash-report.md +++ b/docs/api/structures/crash-report.md @@ -1,4 +1,4 @@ # CrashReport Object -* `date` String -* `ID` Integer \ No newline at end of file +* `date` Date +* `id` String