mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-27 02:23:10 +00:00
19 lines
303 B
TypeScript
19 lines
303 B
TypeScript
import { Directive, ElementRef } from '@angular/core';
|
|
|
|
@Directive({
|
|
selector: '[fuseWidgetToggle]'
|
|
})
|
|
export class FuseWidgetToggleDirective
|
|
{
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param {ElementRef} elementRef
|
|
*/
|
|
constructor(
|
|
public elementRef: ElementRef
|
|
)
|
|
{
|
|
}
|
|
}
|