Skip to content

Instantly share code, notes, and snippets.

@ndcunningham
Last active December 12, 2019 14:43
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 ndcunningham/8b3fb39fefbd9bc57ea740447f9f1e53 to your computer and use it in GitHub Desktop.
Save ndcunningham/8b3fb39fefbd9bc57ea740447f9f1e53 to your computer and use it in GitHub Desktop.
export interface Person {
name: string;
house: House;
}
export interface House {
street: string;
number: number;
size: number;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment