esLint
This commit is contained in:
@@ -4,16 +4,22 @@ export interface AnalogInput {
|
||||
label: string;
|
||||
unit?: string;
|
||||
value: number;
|
||||
name: string;
|
||||
|
||||
// Schwellenwerte (Statusflags)
|
||||
// Statusflags
|
||||
isUnderWarning?: boolean;
|
||||
isUnderLimit?: boolean;
|
||||
isOverWarning?: boolean;
|
||||
isOverLimit?: boolean;
|
||||
|
||||
// Erweiterbar für spätere Charts
|
||||
// Weitere optionale Felder
|
||||
offset?: number;
|
||||
factor?: number;
|
||||
loggerInterval?: number;
|
||||
weighting?: number;
|
||||
|
||||
// Zusätzliche Felder im Slice
|
||||
uW?: boolean;
|
||||
uG?: boolean;
|
||||
oW?: boolean;
|
||||
oG?: boolean;
|
||||
}
|
||||
|
||||
6
types/digitalOutput.ts
Normal file
6
types/digitalOutput.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
// /types/digitalOutput.ts
|
||||
export interface DigitalOutput {
|
||||
id: number;
|
||||
label: string;
|
||||
status: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user