Common options shared by all presets
| 19 | |
| 20 | /** Common options shared by all presets */ |
| 21 | interface BasePresetOptions { |
| 22 | /** Actions to apply at each step. If an array per step is provided, it overrides the default. */ |
| 23 | stepActions?: RampStepAction[]; |
| 24 | } |
| 25 | |
| 26 | export interface LinearRampOptions extends BasePresetOptions { |
| 27 | /** Total ramp duration in seconds */ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…