Last active
July 24, 2019 01:04
-
-
Save methodbox/7d8a90b3c9ef0e71048c4cf42a94e8c7 to your computer and use it in GitHub Desktop.
Get Started with TypeScript - Part 2 - New State Type - Complete
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type State = { | |
appTitle: string; | |
launchImg: string; | |
rocketName: string; | |
missionName: string; | |
missionLogo: string; | |
missionDetails: string; | |
missionSuccess: boolean; | |
flightNumber: number; | |
missionId: string; | |
launchDate: string; | |
payloadSize: number; | |
ships: Array<string>; | |
isShowingMissionData: boolean; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment