UNPKG

tibber-api

Version:

Node.js module for connecting to Tibber API and extract data from your connected homes, including realtime data from Tibber Pulse.

9 lines (8 loc) 321 B
import { IProduction } from "./IProduction"; import { IHomeProductionEdge } from "./IHomeProductionEdge"; import { IHomeProductionPageInfo } from "./IHomeProductionPageInfo"; export interface IHomeProductionConnection { pageInfo: IHomeProductionPageInfo; nodes: IProduction[]; edges: IHomeProductionEdge[]; }