Skip to content

Instantly share code, notes, and snippets.

@jg75
Created June 26, 2018 19:34
Show Gist options
  • Save jg75/bb6d2baee0c14d72e07b4f652cd541a2 to your computer and use it in GitHub Desktop.
Save jg75/bb6d2baee0c14d72e07b4f652cd541a2 to your computer and use it in GitHub Desktop.
interface Greeter {
greet: ()=>string
}
var helloWorld:Greeter = {
greet: ():string =>{return "Hello World"}
}
console.log(helloWorld.greet())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment