(data: any)
| 39 | * @docs-private |
| 40 | */ |
| 41 | export function getTableMissingMatchingRowDefError(data: any) { |
| 42 | return Error( |
| 43 | `Could not find a matching row definition for the ` + |
| 44 | `provided row data: ${JSON.stringify(data)}`, |
| 45 | ); |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Returns an error to be thrown when there is no row definitions present in the content. |
no outgoing calls
no test coverage detected