(inputJson: string, key: string)
| 1029 | } |
| 1030 | |
| 1031 | function readStringFromTaskInput(inputJson: string, key: string): string | undefined { |
| 1032 | return readString(safeParseJsonObject(inputJson)[key]); |
| 1033 | } |
| 1034 | |
| 1035 | function readObjectArray(value: unknown): Array<Record<string, unknown>> { |
| 1036 | return Array.isArray(value) |
no test coverage detected