We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97b938c commit c11a242Copy full SHA for c11a242
src/types/Query.ts
@@ -34,6 +34,9 @@ export type RoomListQueryParams = {
34
currentParticipantCount?: Range;
35
};
36
37
-type Range = { upperBound?: number; lowerBound?: number };
+export type Range = {
38
+ upperBound?: number;
39
+ lowerBound?: number;
40
+};
41
42
export type NativeQueryResult<T> = Promise<{ hasNext: boolean; result: T[] }>;
0 commit comments