Skip to content

Instantly share code, notes, and snippets.

@methodbox
Last active July 24, 2019 01:04
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 methodbox/100328f82742b537a1238e3220ee30a2 to your computer and use it in GitHub Desktop.
Save methodbox/100328f82742b537a1238e3220ee30a2 to your computer and use it in GitHub Desktop.
Get Started with TypeScript - Part 2 - New State type
type State = {
appTitle: 'SpaceX Launches';
launchImg: '';
rocketName: '';
missionName: '';
missionLogo: '';
missionDetails: '';
missionSuccess: false;
flightNumber: 0;
missionId: '';
launchDate: '';
payloadSize: 0;
ships: [];
isShowingMissionData: false;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment