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) • 331 B
TypeScript
import { IConsumption } from './IConsumption';
import { IHomeConsumptionEdge } from "./IHomeConsumptionEdge";
import { IHomeConsumptionPageInfo } from "./IHomeConsumptionPageInfo";
export interface IHomeConsumptionConnection {
pageInfo: IHomeConsumptionPageInfo;
nodes: IConsumption[];
edges: IHomeConsumptionEdge[];
}