Guest User

Untitled

a guest
Jan 19th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. function myFn<T>(param: T): T {
  2. return param;
  3. }
  4.  
  5. let identity = myFn<string>("hello world");
  6.  
  7. let myArr: Array<number>;
Add Comment
Please, Sign In to add comment