(t: unknown)
| 164 | } |
| 165 | |
| 166 | function isSingleIndexTuple(t: unknown): t is [string, IndexDirection] { |
| 167 | return Array.isArray(t) && t.length === 2 && isIndexDirection(t[1]); |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * Converts an `IndexSpecification`, which can be specified in multiple formats, into a |
no test coverage detected