tibber-api
Version:
Node.js module for connecting to Tibber API and extract data from your connected homes, including realtime data from Tibber Pulse.
13 lines (12 loc) • 620 B
TypeScript
export declare enum PriceLevel {
/** The price is greater than 90 % and smaller than 115 % compared to average price. */
NORMAL = "NORMAL",
/** The price is greater than 60 % and smaller or equal to 90 % compared to average price. */
CHEAP = "CHEAP",
/** The price is smaller or equal to 60 % compared to average price. */
VERY_CHEAP = "VERY_CHEAP",
/** The price is greater or equal to 115 % and smaller than 140 % compared to average price. */
EXPENSIVE = "EXPENSIVE",
/** The price is greater or equal to 140 % compared to average price. */
VERY_EXPENSIVE = "VERY_EXPENSIVE"
}