mx-ui-components
Version:
mobius ui library
12 lines (11 loc) • 353 B
TypeScript
declare class ChatBot extends HTMLElement {
private endpoint;
private headers;
private chatArray;
static get observedAttributes(): string[];
attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
constructor();
connectedCallback(): void;
render(): void;
}
export default ChatBot;