Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active April 26, 2017 04:57
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 Ibro/2afef19a11adde5db14ac21d75280be1 to your computer and use it in GitHub Desktop.
Save Ibro/2afef19a11adde5db14ac21d75280be1 to your computer and use it in GitHub Desktop.
TypeScript intersection types - interfaces - Coding Blast - www.codingblast.com
interface D { d: boolean; }
interface E { e: string; }
interface F { f: number; }
interface A { x: D; }
interface B { x: E; }
interface C { x: F;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment