Skip to content

Instantly share code, notes, and snippets.

@jeferandom
Created March 15, 2022 23:13
Show Gist options
  • Save jeferandom/f990b496635909b4cbde071ca7af43fe to your computer and use it in GitHub Desktop.
Save jeferandom/f990b496635909b4cbde071ca7af43fe to your computer and use it in GitHub Desktop.
basic interfaces typescript
interface SuperHeroe {
nombre: string;
edad: number;
direccion: Direccion,
mostrarDireccion: () => string
}
interface Direccion {
calle: string;
pais: string;
ciudad: string;
}
const superHeroe: SuperHeroe = {
nombre: 'Spiderman',
edad: 30,
direccion: {
calle: 'Main St',
pais: 'USA',
ciudad: 'NY'
},
mostrarDireccion() {
return this.nombre + ', ' + this.direccion.ciudad + ', ' + this.direccion.pais;
}
}
const direccion = superHeroe.mostrarDireccion()
console.log('direccion', direccion)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment