mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-27 20:14:28 +00:00
17 lines
257 B
JavaScript
17 lines
257 B
JavaScript
class Variable {
|
|
constructor(props) {
|
|
this._props = props;
|
|
this.type = props.type;
|
|
this.typeName = props.typeName;
|
|
}
|
|
|
|
getValue() {
|
|
return this._value;
|
|
}
|
|
|
|
setValue(value) {
|
|
this._value = value;
|
|
}
|
|
}
|
|
|
|
module.exports = Variable;
|