Skip to content

Instantly share code, notes, and snippets.

@dewey92
Last active October 6, 2018 16:50
Show Gist options
  • Select an option

  • Save dewey92/cc0ae82bc4c6cf5bf3053b17aab90afa to your computer and use it in GitHub Desktop.

Select an option

Save dewey92/cc0ae82bc4c6cf5bf3053b17aab90afa to your computer and use it in GitHub Desktop.
Structural Check
class A {}
class B {}
declare function onlyAcceptA(a: A): any;
declare const b: B;
onlyAcceptA(b); // typechecked :(
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment