stocklift-charts
Version:
StockLift Web Component Charts
13 lines (12 loc) • 311 B
TypeScript
import { LitElement } from "lit";
import "./charts/line-chart";
declare class SLSP500Benchmark extends LitElement {
title: string;
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
"sl-sp500-benchmark": SLSP500Benchmark;
}
}
export {};