mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 01:57:29 +00:00
16 lines
221 B
JavaScript
16 lines
221 B
JavaScript
class Variable {
|
|
constructor(props) {
|
|
this._props = props;
|
|
this.type = props.type;
|
|
}
|
|
|
|
getValue() {
|
|
return this._value;
|
|
}
|
|
|
|
setValue(value) {
|
|
this._value = value;
|
|
}
|
|
}
|
|
|
|
module.exports = Variable;
|