UNPKG

converse.js

Version:
32 lines 938 B
export default class BaseChatView extends CustomElement { static get properties(): { jid: { type: StringConstructor; }; }; jid: any; model: any; viewportMediaQuery: MediaQueryList; renderOnViewportChange: () => void; connectedCallback(): void; updated(): void; /** * @param {MouseEvent} ev */ close(ev: MouseEvent): any; maybeFocus(): void; focus(): this; getBottomPanel(): Element; getMessageForm(): Element; /** * Scrolls the chat down. * * This method will always scroll the chat down, regardless of * whether the user scrolled up manually or not. * @param { Event } [ev] - An optional event that is the cause for needing to scroll down. */ scrollDown(ev?: Event): void; onWindowStateChanged(): void; } import { CustomElement } from '../components/element.js'; //# sourceMappingURL=baseview.d.ts.map