(
tableSchema: TablesSchema | undefined,
)
| 354 | ); |
| 355 | |
| 356 | const validateTablesSchema = ( |
| 357 | tableSchema: TablesSchema | undefined, |
| 358 | ): boolean => |
| 359 | objValidate(tableSchema, (tableSchema) => |
| 360 | objValidate(tableSchema, validateCellOrValueSchema), |
| 361 | ); |
| 362 | |
| 363 | const validateValuesSchema = ( |
| 364 | valuesSchema: ValuesSchema | undefined, |
no test coverage detected
searching dependent graphs…