UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

16 lines (15 loc) 274 B
/** * @category Patch */ export class VectorDelayedValue { slots; constructor(slots) { this.slots = slots; } } /** * @param slots * @returns * @deprecated Use `s.vec(...)` instead. */ export const vec = (...slots) => new VectorDelayedValue(slots);