Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save realtomaszkula/df905fd52a706023c189858b0aad89fb to your computer and use it in GitHub Desktop.
Save realtomaszkula/df905fd52a706023c189858b0aad89fb to your computer and use it in GitHub Desktop.
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