UNPKG

stocklift-charts

Version:

StockLift Web Component Charts

23 lines (22 loc) 642 B
import { LitElement } from "lit"; declare class SLSummary extends LitElement { netWorth: string; returnOnInvestment: string; changeFromLastClose: string; diversificationScore: number; title: string; private showProgressBar; private score; static styles: import("lit").CSSResult[]; firstUpdated(): void; calculateDiversificationScore(): void; updated(changedProperties: Map<string | number | symbol, unknown>): void; setData(): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "sl-summary": SLSummary; } } export {};