UNPKG

@pilotlab/lux-attributes

Version:

A luxurious user experience framework, developed by your friends at Pilot.

13 lines (8 loc) 296 B
import { DataType, Attribute, Attributes } from '@pilotlab/lux-attributes'; export class Quaternion extends Attribute { constructor() { super('Quaternion', null, DataType.COLLECTION); this.dataType = DataType.COLLECTION; } } // End of class export default Quaternion;