ngx-emoji-picker
Version:
A simple emoji picker for Angular 2+ / Ionic 3 with AOT build support
19 lines (18 loc) • 574 B
TypeScript
import { EventEmitter, ElementRef, OnInit, OnDestroy } from '@angular/core';
import { CaretEvent } from '../misc/caret-event';
export declare class EmojiPickerCaretDirective implements OnInit, OnDestroy {
private _el;
caretEmitter: EventEmitter<CaretEvent>;
private _caretEvent$;
private _destroyed$;
private _lastCaretEvent;
private _win;
private _doc;
get doc(): any;
get win(): any;
constructor(_el: ElementRef);
ngOnInit(): void;
ngOnDestroy(): void;
updateCaretPosition(): void;
updateCaretDueMutation(): void;
}