Created
June 16, 2018 20:39
-
-
Save realtomaszkula/df905fd52a706023c189858b0aad89fb to your computer and use it in GitHub Desktop.
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
enum VisibilityState { | |
Visible = 'visible', | |
Hidden = 'hidden' | |
} | |
@HostBinding('@toggle') | |
get toggle(): VisibilityState { | |
return this.isVisible ? VisibilityState.Visible : VisibilityState.Hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment