Represents wave configuration

interface PipelineWave {
    id: string;
    props?: WaveProps;
    stages: StackStage[];
}

Properties

Properties

id: string
props?: WaveProps
stages: StackStage[]