2019-07-01 23:00:17 +00:00
|
|
|
'use strict';
|
|
|
|
const CrashReporter = require('@electron/internal/common/crash-reporter');
|
|
|
|
const { crashReporterInit } = require('@electron/internal/browser/crash-reporter-init');
|
2019-06-16 20:19:06 +00:00
|
|
|
class CrashReporterMain extends CrashReporter {
|
2019-07-01 23:00:17 +00:00
|
|
|
init(options) {
|
|
|
|
return crashReporterInit(options);
|
|
|
|
}
|
2019-06-16 20:19:06 +00:00
|
|
|
}
|
2019-07-01 23:00:17 +00:00
|
|
|
module.exports = new CrashReporterMain();
|
|
|
|
//# sourceMappingURL=crash-reporter.js.map
|