Skip to content

Commit 32ba178

Browse files
committed
[docs] Missing parameter documentation
1 parent aacf415 commit 32ba178

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/types/docs/store.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5297,6 +5297,8 @@
52975297
* Note that a TransactionListener added to the Store with this method can
52985298
* mutate the Store, and its changes will be treated as part of the
52995299
* transaction that is starting.
5300+
* @param listener The function that will be called at the start of a
5301+
* transaction.
53005302
* @returns A unique Id for the listener that can later be used to remove it.
53015303
* @example
53025304
* This example registers a listener that is called at start end of the
@@ -5352,6 +5354,8 @@
53525354
* mutate the Store itself, and its changes will be treated as part of the
53535355
* transaction that is starting (and may fire non-mutating listeners after
53545356
* this).
5357+
* @param listener The function that will be called before the end of a
5358+
* transaction.
53555359
* @returns A unique Id for the listener that can later be used to remove it.
53565360
* @example
53575361
* This example registers a listener that is called at the end of the
@@ -5447,6 +5451,8 @@
54475451
*
54485452
* Note that a TransactionListener added to the Store with this method
54495453
* _cannot_ mutate the Store itself, and attempts to do so will fail silently.
5454+
* @param listener The function that will be called after the end of a
5455+
* transaction.
54505456
* @returns A unique Id for the listener that can later be used to remove it.
54515457
* @example
54525458
* This example registers a listener that is called at the end of the

0 commit comments

Comments
 (0)