amogaddy's picture
Integra World Monitor (AGPL-3.0, self-hosted) nello Space: pagina, menu, e arricchimento notizie per la AI (part 7)
9d2d895 verified
Raw
History Blame Contribute Delete
445 Bytes
export interface FireDetectionCountResponse {
fireDetections: readonly unknown[];
pagination?: {
totalCount?: number;
};
}
export function resolveFireDetectionTotalCount(response: FireDetectionCountResponse): number {
const reportedTotal = Number(response.pagination?.totalCount);
return Number.isFinite(reportedTotal) && reportedTotal >= response.fireDetections.length
? reportedTotal
: response.fireDetections.length;
}