(plugin: PluginType)
| 250 | } |
| 251 | |
| 252 | function createStepData(plugin: PluginType) { |
| 253 | switch (plugin) { |
| 254 | case PluginType.SCALARS: |
| 255 | return createScalarStepData(); |
| 256 | case PluginType.HISTOGRAMS: |
| 257 | return createHistogramStepData(); |
| 258 | case PluginType.IMAGES: |
| 259 | return createImageStepData(); |
| 260 | default: |
| 261 | throw new Error('Cannot create step data for unknown plugin type.'); |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | export function buildTimeSeriesData(): TimeSeriesData { |
| 266 | return { |
no test coverage detected
searching dependent graphs…