@lunaeme/circe-click-outside
Version:
Circe :: Angular Click Outside Directive
13 lines (12 loc) • 419 B
TypeScript
import { ElementRef, EventEmitter } from '@angular/core';
import { EventsService } from '@lunaeme/circe-core';
export declare class ClickOutsideDirective {
private _ev;
private _el;
apply: boolean;
exceptions: Array<string>;
clickOutside: EventEmitter<undefined>;
private readonly _host;
constructor(_ev: EventsService, _el: ElementRef<HTMLElement>);
onMouseEnter(event: Event): void;
}