UNPKG

@openhps/core

Version:

Open Hybrid Positioning System - Core component

11 lines 256 B
import { DataService } from './DataService'; export class DummyDataService extends DataService { constructor(uid, dataType) { super(undefined); this.uid = uid; this._dataType = dataType; } get dataType() { return this._dataType; } }