json-joy
Version:
Collection of libraries for building collaborative editing apps.
20 lines (19 loc) • 445 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.vec = exports.VectorDelayedValue = void 0;
/**
* @category Patch
*/
class VectorDelayedValue {
constructor(slots) {
this.slots = slots;
}
}
exports.VectorDelayedValue = VectorDelayedValue;
/**
* @param slots
* @returns
* @deprecated Use `s.vec(...)` instead.
*/
const vec = (...slots) => new VectorDelayedValue(slots);
exports.vec = vec;
;