ngx-eagle
Version: 
UI component infrastructure and Design components for mobile and desktop Angular web applications.
21 lines (13 loc) • 365 B
text/typescript
import { AfterViewInit, Directive, ElementRef, Renderer2 } from '@angular/core';
@Directive({
  selector: '[ngxPrefix]',
  host: {
    class: 'ngx-prefix'
  },
  standalone: true
})
export class PrefixDirective implements AfterViewInit {
  constructor(private prefixElement: ElementRef, private renderer: Renderer2) { }
  ngAfterViewInit(): void {
    
  }
}