better naming
This commit is contained in:
16
dist/status.d.ts
vendored
Normal file
16
dist/status.d.ts
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
export declare const StatusComponent: {
|
||||
readonly HA_DESK_POSITION: "ha_desk_position";
|
||||
readonly HA_TEMP: "ha_temp";
|
||||
readonly TIDAL_CURRENT: "tidal_current";
|
||||
readonly GRIST_PERSONAL_GOALS: "grist_personal_goals";
|
||||
};
|
||||
export type StatusComponentName = (typeof StatusComponent)[keyof typeof StatusComponent];
|
||||
export type ComponentUpdate = {
|
||||
component: StatusComponentName;
|
||||
data: unknown;
|
||||
};
|
||||
export declare function createComponentUpdate(component: StatusComponentName, data: unknown): {
|
||||
component: StatusComponentName;
|
||||
data: unknown;
|
||||
};
|
||||
//# sourceMappingURL=status.d.ts.map
|
||||
Reference in New Issue
Block a user