fix: KÜ Firmwareupdate
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
// services/fetchAnalogInputsHistoryService.ts
|
||||
|
||||
export async function fetchAnalogInputsHistoryService(): Promise<
|
||||
Record<number, any[]>
|
||||
Record<number, unknown[]>
|
||||
> {
|
||||
const today = new Date();
|
||||
const yesterday = new Date(today);
|
||||
@@ -16,7 +16,7 @@ export async function fetchAnalogInputsHistoryService(): Promise<
|
||||
const fromDate = formatDate(yesterday);
|
||||
const toDate = formatDate(today);
|
||||
|
||||
const result: Record<number, any[]> = {};
|
||||
const result: Record<number, unknown[]> = {};
|
||||
|
||||
const isDev = process.env.NODE_ENV === "development";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user