(
tableId?: Id,
rowId?: Id,
cellId?: Id,
invalidCell?: any,
defaultedCell?: Cell,
)
| 1067 | }; |
| 1068 | |
| 1069 | const cellInvalid = ( |
| 1070 | tableId?: Id, |
| 1071 | rowId?: Id, |
| 1072 | cellId?: Id, |
| 1073 | invalidCell?: any, |
| 1074 | defaultedCell?: Cell, |
| 1075 | ): CellOrUndefined => { |
| 1076 | arrayPush( |
| 1077 | mapEnsure<Id | undefined, any[]>( |
| 1078 | mapEnsure<Id | undefined, IdMap<any[]>>( |
| 1079 | mapEnsure<Id | undefined, IdMap2<any[]>>( |
| 1080 | invalidCells, |
| 1081 | tableId, |
| 1082 | mapNew, |
| 1083 | ), |
| 1084 | rowId, |
| 1085 | mapNew, |
| 1086 | ), |
| 1087 | cellId, |
| 1088 | () => [], |
| 1089 | ), |
| 1090 | invalidCell, |
| 1091 | ); |
| 1092 | return defaultedCell; |
| 1093 | }; |
| 1094 | |
| 1095 | const valueInvalid = ( |
| 1096 | valueId?: Id, |
no test coverage detected
searching dependent graphs…