feature/drone #5

Closed
watsonb8 wants to merge 14 commits from feature/drone into master
Showing only changes of commit c60387a987 - Show all commits

View File

@ -0,0 +1,10 @@
export interface ISequence {
name: string;
steps: Array<IStep>;
}
export interface IStep {
deviceName: string;
deviceCommand: string;
delay: number;
}