UNPKG

rms-sparklines

Version:
16 lines (15 loc) 394 B
import { Decoration } from './decoration'; export interface SparklineLineInterface { canvasEl: HTMLCanvasElement; ctx: CanvasRenderingContext2D; className: string; decorationPoints: Decoration[]; dotRadius: number; height: number; lineColor: string; linePoints: number[]; lineWidth: number; shadeColor: string; toolTip: boolean; width: number; }