@stratio/egeo
Version:
Stratio egeo library of components in Angular 2
10 lines (9 loc) • 354 B
TypeScript
import { ElementRef, EventEmitter, OnChanges, AfterViewInit } from '@angular/core';
export declare class SubmenuPosDirective implements OnChanges, AfterViewInit {
private el;
submenuPosIsActive: boolean;
positionChange: EventEmitter<number>;
constructor(el: ElementRef);
ngAfterViewInit(): void;
ngOnChanges(change: any): void;
}