Skip to content

Instantly share code, notes, and snippets.

@charlypoly
Created September 12, 2017 19:30
Show Gist options
  • Save charlypoly/0ac062e24424fbe00917523188799b13 to your computer and use it in GitHub Desktop.
Save charlypoly/0ac062e24424fbe00917523188799b13 to your computer and use it in GitHub Desktop.
interface Person {
id: string;
name: string;
}
function sayHello(person: Person) {
console.log(person.name);
}
sayHello({} as any);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment