converse.js
Version:
Browser based XMPP chat client
36 lines • 999 B
TypeScript
export default class EmojiPickerContent extends CustomElement {
static get properties(): {
search_results: {
type: ArrayConstructor;
};
current_skintone: {
type: StringConstructor;
};
model: {
type: ObjectConstructor;
};
query: {
type: StringConstructor;
};
};
model: any;
current_skintone: any;
query: any;
search_results: any;
render(): import("lit-html").TemplateResult<1>;
firstUpdated(): void;
initIntersectionObserver(): void;
observer: IntersectionObserver;
setCategoryOnVisibilityChange(entries: any): void;
/**
* @param {MouseEvent} ev
*/
insertEmoji(ev: MouseEvent): void;
/**
* @param {string} shortname
*/
shouldBeHidden(shortname: string): boolean;
}
export type EmojiPicker = any;
import { CustomElement } from 'shared/components/element.js';
//# sourceMappingURL=emoji-picker-content.d.ts.map