(value?: string)
| 20 | const nameMap: Map<string, number> = new Map<string, number>(); |
| 21 | |
| 22 | export function checkDataFormat(value?: string): void { |
| 23 | checkStringTypeUnionValue(VALID_DATA_FORMAT_VALUES, 'DataFormat', value); |
| 24 | } |
| 25 | |
| 26 | export function checkInterpolationFormat(value?: string): void { |
| 27 | checkStringTypeUnionValue( |
no test coverage detected
searching dependent graphs…