Created sequence accessory
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
export interface ISequence {
|
||||
name: string;
|
||||
steps: Array<IStep>;
|
||||
DisplayName: string;
|
||||
Steps: Array<IStep>;
|
||||
}
|
||||
|
||||
export interface IStep {
|
||||
deviceName: string;
|
||||
deviceCommand: string;
|
||||
delay: number;
|
||||
DeviceName?: string;
|
||||
DeviceCommand?: string;
|
||||
Delay: number;
|
||||
}
|
||||
|
Reference in New Issue
Block a user