UNPKG

@anypoint-web-components/anypoint-item

Version:
32 lines (29 loc) 639 B
import { TemplateResult, LitElement, CSSResult } from 'lit-element'; /** * `anypoint-item` * An Anypoint list item with 2 or 3 lines. */ export declare class AnypointItemBody extends LitElement { get styles(): CSSResult; /** * @deprecated Use `compatibility` instead. */ legacy: boolean; /** * Enables compatibility with Anypoint components. * @attribute */ compatibility: boolean; /** * Renders the item in a 2-line layout * @attribute */ twoLine: boolean; /** * Renders the item in a 3-line layout * @attribute */ threeLine: boolean; constructor(); render(): TemplateResult; }