Focusing
It doesn't feel like the future yet.
- New York, New York
- http://evanrs.com
- @evanrs
Highlights
- Pro
Block or Report
Block or report evanrs
Report abuse
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned
-
1
type ArityNone<T> = () => T;
2type ArityOne<T, A> = (a?: A) => T;
3type ArityTwo<T, A, B> = (a: A, b?: B) => T;
4type ArityThree<T, A, B, C> = (a: A, b: B, c?: C) => T;
5type ArityFour<T, A, B, C, D> = (a: A, b: B, c: C, d?: D) => T;
-
use-latest-version Public
A react hook that guarentees out of order updates only yield the latest version.
TypeScript 2
-
-

