/** 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
];