index.ts 437 Bytes
export interface IAddTrigger {
  triggerType: string;
  deviceId: string;
  touchWay: string;
  attributeChoose: string;
  compare: string;
  value: string;
}

export interface IAddCondition {
  triggerType: string;
  deviceId: string;
  createTime: string;
  updateTime: string;
  compare: string;
  value: string;
}

export interface IAddAction {
  outTarget: string;
  deviceId: string;
  command: string;
  sceneLinkageId: string;
}