src/waveform/waveform-launch-command.ts
Waveform Launch Command is used to launch (and optionally start) waveforms.
Properties |
name |
name:
|
Type : string
|
Defined in src/waveform/waveform-launch-command.ts:6
|
The name of the Waveform to launch (SAD definition name) |
started |
started:
|
Type : boolean
|
Defined in src/waveform/waveform-launch-command.ts:8
|
Set to true if the Waveform should be started too, false otherwise |
export interface IWaveformLaunchCommand {
/** The name of the Waveform to launch (SAD definition name) */
name: string;
/** Set to true if the Waveform should be started too, false otherwise */
started: boolean;
}