UNPKG
@nebulaglitch/shopbot
Version:
latest (0.0.2)
0.0.2
0.0.1
A library to generate shopbot output
github.com/CrimsonBastille/shopbot
CrimsonBastille/shopbot
@nebulaglitch/shopbot
/
dist
/
commands
/
setoutputswitch.js
13 lines
(10 loc)
•
292 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
Command
from
'../command.js'
;
class
SetOutputSwitch
extends
Command
{
constructor
(
switchNum, state
){
super
(
"SO"
);
this
.
args
.
push
(switchNum);
this
.
args
.
push
(state); } }
export
{
SetOutputSwitch
as
default
};
//# sourceMappingURL=setoutputswitch.js.map