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

10 lines
339 B
JavaScript
Raw Normal View History

2019-10-01 13:49:56 +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-10-01 13:49:56 +00:00
init(options) {
return crashReporterInit(options);
}
2019-01-17 18:22:05 +00:00
}
2019-10-01 13:49:56 +00:00
module.exports = new CrashReporterMain();