UNPKG

@esri/calcite-components

Version:

Web Components for Esri's Calcite Design System.

14 lines (12 loc) 223 B
/** array of coordinates */ export type DataSeries = Point[]; export interface ColorStop { offset: number; color: string; opacity?: number; } /** x,y coordinate set */ export type Point = [ number, number ];