1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

chore(1-3293): update imports

This commit is contained in:
Thomas Heartman 2025-01-24 14:51:59 +01:00
parent 3ad10be1b2
commit 1c3226ee52
No known key found for this signature in database
GPG Key ID: BD1F880DAED1EE78

View File

@ -27,4 +27,12 @@ export interface ITrafficDataUsageStore
getTrafficDataForMonthRange(
monthsBack: number,
): Promise<IStatMonthlyTrafficUsage[]>;
getDailyTrafficDataForPeriod(
from: Date,
to: Date,
): Promise<IStatTrafficUsage[]>;
getMonthlyTrafficDataForPeriod(
from: Date,
to: Date,
): Promise<IStatMonthlyTrafficUsage[]>;
}