mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-17 03:05:13 +00:00
12 lines
258 B
TypeScript
12 lines
258 B
TypeScript
export interface ConvertedExecutorProperty {
|
|
function_code?: string;
|
|
function_value?: any;
|
|
delay_seconds?: number;
|
|
}
|
|
|
|
export interface ConvertedAction {
|
|
entity_id: string;
|
|
action_executor: string;
|
|
executor_property?: ConvertedExecutorProperty;
|
|
}
|