UNPKG

@pubby/sdk

Version:
17 lines (14 loc) 513 B
import { __extends } from 'tslib'; import { IncomingMessage } from '../incoming-message.js'; var UserStatusResponse = /** @class */ (function (_super) { __extends(UserStatusResponse, _super); function UserStatusResponse(userId, status) { var _this = _super.call(this) || this; _this.userId = userId; _this.status = status; return _this; } UserStatusResponse.id = "ust"; return UserStatusResponse; }(IncomingMessage)); export { UserStatusResponse };