mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 14:22:35 +00:00
22 lines
322 B
TypeScript
22 lines
322 B
TypeScript
import { AfterViewInit, Directive, ElementRef, OnInit } from '@angular/core';
|
|
|
|
@Directive({
|
|
selector: '[fuseWidgetToggle]'
|
|
})
|
|
export class FuseWidgetToggleDirective implements OnInit, AfterViewInit
|
|
{
|
|
|
|
constructor(public el: ElementRef)
|
|
{
|
|
}
|
|
|
|
ngOnInit()
|
|
{
|
|
}
|
|
|
|
ngAfterViewInit()
|
|
{
|
|
}
|
|
|
|
}
|