(value?: string)
| 19 | import {arrayProd} from './utils/math_utils'; |
| 20 | |
| 21 | export function checkFanMode(value?: string): void { |
| 22 | checkStringTypeUnionValue(VALID_FAN_MODE_VALUES, 'FanMode', value); |
| 23 | } |
| 24 | |
| 25 | export function checkDistribution(value?: string): void { |
| 26 | checkStringTypeUnionValue(VALID_DISTRIBUTION_VALUES, 'Distribution', value); |
no test coverage detected
searching dependent graphs…