Created
February 11, 2018 23:12
-
-
Save joanllenas/f1b0d502bc762b5c5e76d28307b22530 to your computer and use it in GitHub Desktop.
Boolean approach - Slaying a UI Antipattern with Angular
This file contains 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
export interface SunriseState { | |
isLoading: boolean; | |
error: string; | |
data: { | |
sunrise: string, | |
sunset: string, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment