Skip to content

Instantly share code, notes, and snippets.

@carlrip
Created July 26, 2019 18:12
Show Gist options
  • Save carlrip/93ca625790332a5cc1c62b378b678459 to your computer and use it in GitHub Desktop.
Save carlrip/93ca625790332a5cc1c62b378b678459 to your computer and use it in GitHub Desktop.
type Character = {
name: string;
height: string;
gender: "male" | "female";
...
}
...
const { name = "Unknown" }: Character = await getCharacter(1);
console.log(name);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment