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

10 lines
381 B
JavaScript
Raw Normal View History

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