export type DataPoints = string[];

export type SortingOptions = SortingOption[];
export interface SortingOption {
  [name: string]: string;
}
