You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[TS] Support ArrayLike in batch function and loadMany (#214)
* Use ReadonlyArray instead of Array on input args
The runtime code does not alter the Arrays in question, and it is good form to prefer `ReadonlyArray<T>` over `Array<T>` (aka `T[]`) in the input position when one can.
* Use ReadonlyArray in promise result
* Support ArrayLike
0 commit comments