cometchat-react-ui-kit2
Version:
CometChat UI Kit for React App
27 lines (26 loc) • 799 B
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.UserListConfiguration = void 0;
var _spinner = _interopRequireDefault(require("../../../Users/CometChatUserList/resources/spinner.svg"));
var UserListConfiguration = function UserListConfiguration() {
this.limit = 30;
this.searchKeyword = "";
this.status = "";
this.roles = [];
this.friendsOnly = false;
this.hideBlockedUsers = false;
this.tags = [];
this.uids = [];
this.customView = {
loading: "",
empty: "",
error: ""
};
this.loadingIconURL = _spinner["default"];
this.hideError = false;
this.onErrorCallback = function () {};
};
exports.UserListConfiguration = UserListConfiguration;