(value?: string)
| 24 | } |
| 25 | |
| 26 | export function checkInterpolationFormat(value?: string): void { |
| 27 | checkStringTypeUnionValue( |
| 28 | VALID_INTERPOLATION_FORMAT_VALUES, 'InterpolationFormat', value); |
| 29 | } |
| 30 | |
| 31 | export function checkPaddingMode(value?: string): void { |
| 32 | checkStringTypeUnionValue(VALID_PADDING_MODE_VALUES, 'PaddingMode', value); |
no test coverage detected
searching dependent graphs…