UNPKG

create-lwc-plugin

Version:

Wizard-like CLI tool for scaffolding a new plugin for Lightweight Charts™

12 lines (10 loc) 329 B
import { CustomData } from 'lightweight-charts'; /** * _CLASSNAME_ Data */ export interface _CLASSNAME_Data extends CustomData { //* Define the structure of the data required for the series. //* You could also 'extend' an existing Lightweight Charts Data type like LineData or CandlestickData high: number; low: number; }