Skip to content

Commit f950fb1

Browse files
committed
types
1 parent 9656a66 commit f950fb1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/LiveQueryClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ class LiveQueryClient {
183183
* <a href="https://github.com/parse-community/parse-server/wiki/Parse-LiveQuery-Protocol-Specification">here</a> for more details. The subscription you get is the same subscription you get
184184
* from our Standard API.
185185
*
186-
* @param {ParseQuery} query - the ParseQuery you want to subscribe to
187-
* @param {string} sessionToken (optional)
186+
* @param {ParseQuery} query The `Parse.Query` to subscribe to.
187+
* @param {string} [sessionToken] Optional session token to use for the subscription.
188188
* @returns {LiveQuerySubscription | undefined}
189189
*/
190190
subscribe(query: ParseQuery, sessionToken?: string): LiveQuerySubscription | undefined {

types/LiveQueryClient.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ declare class LiveQueryClient {
9292
* <a href="https://github.com/parse-community/parse-server/wiki/Parse-LiveQuery-Protocol-Specification">here</a> for more details. The subscription you get is the same subscription you get
9393
* from our Standard API.
9494
*
95-
* @param {ParseQuery} query - the ParseQuery you want to subscribe to
96-
* @param {string} sessionToken (optional)
95+
* @param {ParseQuery} query The `Parse.Query` to subscribe to.
96+
* @param {string} [sessionToken] Optional session token to use for the subscription.
9797
* @returns {LiveQuerySubscription | undefined}
9898
*/
9999
subscribe(query: ParseQuery, sessionToken?: string): LiveQuerySubscription | undefined;

0 commit comments

Comments
 (0)