asarfuckery/electronasar/canary/browser/api/crash-reporter.js

13 lines
330 B
JavaScript
Raw Normal View History

2019-02-06 20:27:58 +00:00
'use strict'
const CrashReporter = require('@electron/internal/common/crash-reporter')
2019-04-05 18:06:38 +00:00
const { crashReporterInit } = require('@electron/internal/browser/crash-reporter-init')
2019-02-06 20:27:58 +00:00
class CrashReporterMain extends CrashReporter {
2019-04-05 18:06:38 +00:00
init (options) {
return crashReporterInit(options)
2019-02-06 20:27:58 +00:00
}
}
module.exports = new CrashReporterMain()