Skip to content

Instantly share code, notes, and snippets.

@YouMinTW
Last active August 17, 2021 16:51
Show Gist options
  • Save YouMinTW/dcfdcdc1c47568382d51807de7c032fe to your computer and use it in GitHub Desktop.
Save YouMinTW/dcfdcdc1c47568382d51807de7c032fe to your computer and use it in GitHub Desktop.
type Book = {
name: string;
author: Author;
};
type Author = {
firstName: string;
lastName: string;
address: Address;
};
type Address = {
postCode: number;
street: string;
city: string;
country: string;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment