Files

13 lines
248 B
JavaScript
Raw Permalink Normal View History

2026-04-05 16:14:49 -04:00
'use strict';
module.exports.definition = {
set: function (v) {
this._setProperty('direction', v);
},
get: function () {
return this.getPropertyValue('direction');
},
enumerable: true,
configurable: true
};