stocklift-charts
Version:
StockLift Web Component Charts
21 lines (20 loc) • 545 B
TypeScript
import { LitElement } from "lit";
declare class SLProjections extends LitElement {
title: string;
growthProjections: {
amount: number;
year: string;
}[];
private chart;
firstUpdated(): void;
updated(changedProperties: Map<string | number | symbol, unknown>): void;
renderChart(): void;
static styles: import("lit").CSSResult[];
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
"sl-projections": SLProjections;
}
}
export {};