Skip to content

Instantly share code, notes, and snippets.

@ferrerq
Created November 14, 2019 20:46
Show Gist options
  • Save ferrerq/cd29c52a51895a627078761b282c49d9 to your computer and use it in GitHub Desktop.
Save ferrerq/cd29c52a51895a627078761b282c49d9 to your computer and use it in GitHub Desktop.
import { Directive, ElementRef } from '@angular/core';
@Directive({
selector: '[appRight]',
})
export class UserRigthDirective {
@Input() rights: string;
constructor(private el: ElementRef) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment