igniteui-webcomponents
Version:
Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.
12 lines (11 loc) • 356 B
TypeScript
import { LitVirtualizer } from '@lit-labs/virtualizer/LitVirtualizer.js';
export default class IgcComboListComponent extends LitVirtualizer {
static readonly tagName = "igc-combo-list";
scroller: boolean;
static register(): void;
}
declare global {
interface HTMLElementTagNameMap {
'igc-combo-list': IgcComboListComponent;
}
}