(value: KeyConfig)
| 47 | } |
| 48 | |
| 49 | function getInvalidStringKeys(value: KeyConfig): string[] { |
| 50 | const invalidKeys: string[] = []; |
| 51 | for (const key in value) { |
| 52 | if (typeof value[key] !== "string") { |
| 53 | invalidKeys.push(key); |
| 54 | } |
| 55 | } |
| 56 | return invalidKeys; |
| 57 | } |
| 58 | |
| 59 | function getEmptyKeys(value: KeyConfig): string[] { |
| 60 | const emptyKeys: string[] = []; |
no test coverage detected