Guest User

Untitled

a guest
Jul 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. // @flow
  2.  
  3. // file1.js
  4. export type Inc<N> = $Call<
  5. & (0 => 1)
  6. & (1 => 2)
  7. & (2 => 3)
  8. & (3 => 4), N>
  9. export type Dec<N> = $Call<
  10. & (1 => 0)
  11. & (2 => 1)
  12. & (3 => 2)
  13. & (4 => 3), N>
Add Comment
Please, Sign In to add comment