mirror of
https://github.com/home-assistant/frontend.git
synced 2026-03-01 14:16:16 +00:00
17 lines
429 B
TypeScript
17 lines
429 B
TypeScript
import type {
|
|
HassEntityAttributeBase,
|
|
HassEntityBase,
|
|
} from "home-assistant-js-websocket";
|
|
|
|
export const REMOTE_SUPPORT_LEARN_COMMAND = 1;
|
|
export const REMOTE_SUPPORT_DELETE_COMMAND = 2;
|
|
export const REMOTE_SUPPORT_ACTIVITY = 4;
|
|
|
|
export type RemoteEntity = HassEntityBase & {
|
|
attributes: HassEntityAttributeBase & {
|
|
current_activity: string | null;
|
|
activity_list: string[] | null;
|
|
[key: string]: any;
|
|
};
|
|
};
|