export interface DataItemValueTypeInterface {
  unit: string;
  name: string;
  type: "Number" | "String" | "Boolean" | "Geo" | "Object";
}
