export interface ISequence { name: string; steps: Array; } export interface IStep { deviceName: string; deviceCommand: string; delay: number; }