UNPKG

@casual-simulation/aux-common

Version:
16 lines 421 B
/** * Defines a class that implements TimeSyncConnection when given a InstRecordsClient. */ export class InstRecordsClientTimeSyncConnection { constructor(client) { this._client = client; } get closed() { return false; } unsubscribe() { } sampleServerTime() { return this._client.sampleServerTime(); } } //# sourceMappingURL=InstRecordsClientTimeSyncConnection.js.map