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.
13 lines (12 loc) • 381 B
TypeScript
import { LitElement } from 'lit';
export default class IgcSliderLabelComponent extends LitElement {
static readonly tagName = "igc-slider-label";
static styles: import("lit").CSSResult;
static register(): void;
protected createRenderRoot(): this;
}
declare global {
interface HTMLElementTagNameMap {
'igc-slider-label': IgcSliderLabelComponent;
}
}