Skip to content

Instantly share code, notes, and snippets.

@xnt
Created July 20, 2020 03:45
Show Gist options
  • Save xnt/03752ec49ae06fa9340748a31fd05b20 to your computer and use it in GitHub Desktop.
Save xnt/03752ec49ae06fa9340748a31fd05b20 to your computer and use it in GitHub Desktop.
type UserAddress = {
street: string;
number: number;
city: string;
country: string;
};
type UserData = {
firstName: string;
lastName: string;
address: UserAddress;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment