chore: tsify auto-updater (#24328)

This commit is contained in:
Jeremy Rose 2020-07-01 12:27:12 -07:00 committed by GitHub
parent 4c449fbc75
commit 354ea00f17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 49 additions and 53 deletions

View file

@ -0,0 +1,5 @@
if (process.platform === 'win32') {
module.exports = require('./auto-updater/auto-updater-win');
} else {
module.exports = require('./auto-updater/auto-updater-native');
}