UNPKG

reactronic-dom

Version:

Reactronic DOM - Transactional Reactive Front-End Development Framework

12 lines (11 loc) 328 B
import { ReactiveObject } from 'reactronic'; export class Sensor extends ReactiveObject { constructor() { super(...arguments); this.revision = 0; this.elementDataList = []; } get topElementData() { return this.elementDataList.length > 0 ? this.elementDataList[0] : undefined; } }