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

10 lines
381 B
JavaScript
Raw Normal View History

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