trouble-in-terror-town/node_modules/gauge/lib/base-theme.js
Mikolaj 2bbacbea09 did some more work on networking and removed EOS in favor of LRM
did some more work on networking and removed EOS in favor of Light Reflective Mirror
2022-05-31 15:04:31 +02:00

18 lines
424 B
JavaScript

'use strict'
var spin = require('./spin.js')
var progressBar = require('./progress-bar.js')
module.exports = {
activityIndicator: function (values, theme, width) {
if (values.spun == null) {
return
}
return spin(theme, values.spun)
},
progressbar: function (values, theme, width) {
if (values.completed == null) {
return
}
return progressBar(theme, width, values.completed)
},
}