History_stats sensor platform

Hi All! Is it worth adding to the history_stats sensor platform, the ability to track more than one entity state?
https://github.com/home-assistant/core/blob/269608d1af54c20a61f130ba9f0e0e8b8c2251b0/homeassistant/components/history_stats/sensor.py

examples:

- platform: history_stats
  name: washer_runtime_today
  entity_id: sensor.washing_machine
  state: ['Washing','Rinsing','Spinning']
  type: time
  start: '{{ now().replace(hour=0).replace(minute=0).replace(second=0) }}'
  end: '{{ now() }}'

- platform: history_stats
  name: Flights Overhead today
  entity_id: sensor.opensky
  state: ">0"
  type: count
  start: '{{ now().replace(hour=0).replace(minute=0).replace(second=0) }}'
  end: '{{ now() }}'