asarfuckery/electronasar/ptb/browser/api/crash-reporter.js
2019-10-01 15:49:56 +02:00

9 lines
339 B
JavaScript

'use strict';
const CrashReporter = require('@electron/internal/common/crash-reporter');
const { crashReporterInit } = require('@electron/internal/browser/crash-reporter-init');
class CrashReporterMain extends CrashReporter {
init(options) {
return crashReporterInit(options);
}
}
module.exports = new CrashReporterMain();