mx-ui-components
Version:
mobius ui library
15 lines (14 loc) • 473 B
TypeScript
declare class MobiusInput extends HTMLElement {
[x: string]: unknown;
storeRef: any;
input: HTMLInputElement | null;
name: string | null;
private debounceFn;
static get observedAttributes(): string[];
constructor();
attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
connectedCallback(): void;
debouncedListFilter: (e: any) => void;
addListener(): void;
}
export default MobiusInput;