Skip to content

Instantly share code, notes, and snippets.

@Coder-Jedi
Created November 9, 2022 05:43
Show Gist options
  • Save Coder-Jedi/4f41acd759e4323ca12b5139f65238ad to your computer and use it in GitHub Desktop.
Save Coder-Jedi/4f41acd759e4323ca12b5139f65238ad to your computer and use it in GitHub Desktop.
import { AfterViewInit, Directive } from '@angular/core';
@Directive({
selector: '[appReadMore]'
})
export class ReadMoreDirective implements AfterViewInit {
constructor() { }
ngAfterViewInit(): void {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment