@lokalise/node-api
Version:
Official Lokalise API 2.0 Node.js client
26 lines (25 loc) • 436 B
text/typescript
export interface OtaStatistics {
lokaliseProjectId: string;
from: string;
to: string;
sdk: string;
daily: Array<{
date: string;
downloads: number;
trafficMb: number;
trafficBytes: string;
framework: string;
}>;
monthly: Array<{
date: string;
downloads: number;
trafficMb: number;
trafficBytes: string;
framework: string;
}>;
totals: {
downloads: number;
trafficMb: number;
trafficBytes: string;
};
}