forked from CuppaLabs/angular2-multiselect-dropdown
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclickOutside.d.ts
More file actions
27 lines (27 loc) · 857 Bytes
/
clickOutside.d.ts
File metadata and controls
27 lines (27 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { ElementRef, EventEmitter, OnInit, OnChanges } from '@angular/core';
export declare class ClickOutsideDirective {
private _elementRef;
constructor(_elementRef: ElementRef);
clickOutside: EventEmitter<MouseEvent>;
onClick(event: MouseEvent, targetElement: HTMLElement): void;
}
export declare class ScrollDirective {
private _elementRef;
constructor(_elementRef: ElementRef);
scroll: EventEmitter<MouseEvent>;
onClick(event: MouseEvent, targetElement: HTMLElement): void;
}
export declare class styleDirective {
private el;
constructor(el: ElementRef);
styleVal: number;
ngOnInit(): void;
ngOnChanges(): void;
}
export declare class setPosition implements OnInit, OnChanges {
el: ElementRef;
height: number;
constructor(el: ElementRef);
ngOnInit(): void;
ngOnChanges(): void;
}