Skip to content

Instantly share code, notes, and snippets.

@koss-lebedev
Created April 28, 2019 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koss-lebedev/352952a1839960f9d35455bab8f7cda3 to your computer and use it in GitHub Desktop.
Save koss-lebedev/352952a1839960f9d35455bab8f7cda3 to your computer and use it in GitHub Desktop.
interface IUser {
firstName: string
lastName: string
}
interface IUser {
age: number
}
const user: IUser = {
firstName: 'Jon',
lastName: 'Doe',
age: 25,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment