@pubby/sdk
Version:
Pubby Development Kit
14 lines (11 loc) • 410 B
JavaScript
import { __extends } from 'tslib';
import { OutgoingMessage } from '../outgoing-message.js';
var TimeSyncRequest = /** @class */ (function (_super) {
__extends(TimeSyncRequest, _super);
function TimeSyncRequest(timestamp) {
return _super.call(this, timestamp) || this;
}
TimeSyncRequest.id = 'tisy';
return TimeSyncRequest;
}(OutgoingMessage));
export { TimeSyncRequest };