(partial?: Partial<AggregateStepConfig>)
| 2662 | } |
| 2663 | |
| 2664 | public override clone(partial?: Partial<AggregateStepConfig>) { |
| 2665 | const { config } = this; |
| 2666 | return new SumStep({ |
| 2667 | property: partial?.property ?? config.property, |
| 2668 | variable: partial?.variable ?? config.variable, |
| 2669 | stepLabels: partial?.stepLabels ?? (config.stepLabels ? [...config.stepLabels] : undefined), |
| 2670 | }); |
| 2671 | } |
| 2672 | } |
| 2673 | |
| 2674 | export class AvgStep extends Step<AggregateStepConfig> { |
no outgoing calls
no test coverage detected