Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save klinkov/8a32883e291e92b52a773e63f3413377 to your computer and use it in GitHub Desktop.
Save klinkov/8a32883e291e92b52a773e63f3413377 to your computer and use it in GitHub Desktop.
TS type
interface IUser
<
TName = string,
TAge = number,
TAlt = string | number
> {
name: TName;
age: TAge;
phone: TAlt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment