Brandon Watson cdab6327f5
All checks were successful
continuous-integration/drone/push Build is passing
Created sequence accessory
2021-06-07 22:10:50 -04:00

11 lines
171 B
TypeScript

export interface ISequence {
DisplayName: string;
Steps: Array<IStep>;
}
export interface IStep {
DeviceName?: string;
DeviceCommand?: string;
Delay: number;
}