Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TS] Support ArrayLike in batch function and loadMany #214

Merged
merged 4 commits into from Nov 13, 2019
Merged

Commits on Apr 17, 2019

  1. 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.
    ckknight committed Apr 17, 2019
    Copy the full SHA
    440ac39 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2019

  1. Copy the full SHA
    77df489 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    d0374ec View commit details
    Browse the repository at this point in the history
  3. Support ArrayLike

    leebyron committed Nov 13, 2019
    Copy the full SHA
    6b965e7 View commit details
    Browse the repository at this point in the history