mirror of
https://github.com/koush/scrypted.git
synced 2026-02-13 10:22:57 +00:00
Merge branch 'main' of github.com:koush/scrypted
This commit is contained in:
@@ -327,6 +327,7 @@ class FanState(TypedDict):
|
||||
counterClockwise: bool
|
||||
mode: FanMode
|
||||
speed: float
|
||||
swing: bool
|
||||
pass
|
||||
|
||||
class FanStatus(TypedDict):
|
||||
@@ -336,6 +337,7 @@ class FanStatus(TypedDict):
|
||||
maxSpeed: float
|
||||
mode: FanMode
|
||||
speed: float
|
||||
swing: bool
|
||||
pass
|
||||
|
||||
class HttpRequest(TypedDict):
|
||||
|
||||
@@ -289,11 +289,13 @@ export interface FanStatus {
|
||||
maxSpeed?: number;
|
||||
counterClockwise?: boolean;
|
||||
availableModes?: FanMode[];
|
||||
swing?: boolean;
|
||||
}
|
||||
export interface FanState {
|
||||
speed?: number;
|
||||
mode?: FanMode;
|
||||
counterClockwise?: boolean;
|
||||
swing?: boolean;
|
||||
}
|
||||
export interface Fan {
|
||||
fan?: FanStatus;
|
||||
|
||||
Reference in New Issue
Block a user