UNPKG

svelte-lightweight-charts

Version:

Svelte wrapper for financial lightweight charts built with HTML5 canvas

14 lines (10 loc) 450 B
import { SvelteComponentTyped } from 'svelte'; import type {IPriceLine, CreatePriceLineOptions} from 'lightweight-charts'; import type {Reference} from '../internal/utils.js'; export interface $$PROPS extends CreatePriceLineOptions { ref?: Reference<IPriceLine>; } // eslint-disable-next-line @typescript-eslint/no-empty-interface export interface $$EVENTS { } export default class PriceLine extends SvelteComponentTyped<$$PROPS, $$EVENTS> {}