here is the old interface
export interface Sequence {
kind: "sequence";
args: {
version: number;
};
comment?: string | undefined;
body?: (MoveAbsolute
| MoveRelative
| WritePin
| ReadPin
| Wait
| SendMessage
| Execute
| If)[] | undefined;
}
i just want to add the name of the sequence into the args
export interface Sequence {
kind: "sequence";
args: {
version: number;
name: string;
};
comment?: string | undefined;
body?: (MoveAbsolute
| MoveRelative
| WritePin
| ReadPin
| Wait
| SendMessage
| Execute
| If)[] | undefined;
}
this will make logging sequences easier inside the sequencer