UNPKG

ui-lit

Version:

UI Elements on LIT

8 lines (7 loc) 243 B
import { LitElement } from 'lit'; import { LitLabel } from '../../label/index'; export interface ILabled extends LitElement { readonly labels: LitLabel[]; addLabel(data: LitLabel): void; removeLabel(data: LitLabel): void; }