UNPKG

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.

22 lines (21 loc) 594 B
import { LitElement } from 'lit'; /** * Displays a collection of data items in a templatable list format. * * @element igc-list * * @slot - Renders the list items and list headers inside default slot. */ export default class IgcListComponent extends LitElement { static readonly tagName = "igc-list"; static styles: import("lit").CSSResult[]; static register(): void; private _internals; constructor(); protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'igc-list': IgcListComponent; } }