UNPKG

@cloud-carbon-footprint/core

Version:

The core logic to get cloud usage data and estimate energy and carbon emissions.

9 lines (8 loc) 193 B
export default interface Cost { timestamp: Date; amount: number; currency: string; } export declare const aggregateCostsByDay: (estimates: Cost[]) => { [date: string]: Cost; };