(instancePath: string, schema: JsonSchema)
| 40 | |
| 41 | export const getErrorAt = |
| 42 | (instancePath: string, schema: JsonSchema) => (state: JsonFormsState) => { |
| 43 | return errorAt(instancePath, schema)(state.jsonforms.core); |
| 44 | }; |
| 45 | |
| 46 | export const getSubErrorsAt = |
| 47 | (instancePath: string, schema: JsonSchema) => (state: JsonFormsState) => |
no test coverage detected
searching dependent graphs…