UNPKG

@sendbird/uikit-chat-hooks

Version:

A set of React hooks for integrating Sendbird chat functionality into your React app.

15 lines 284 B
export class CustomQuery { constructor(params) { this.params = params; } get isLoading() { return this.params.isLoading(); } get hasNext() { return this.params.hasNext(); } next() { return this.params.next(); } } //# sourceMappingURL=CustomQuery.js.map