* transform an array type into a readonly array type * @param T - array type
| 191 | * @param T - array type |
| 192 | */ |
| 193 | interface ReadonlyArrayDeep<T> extends ReadonlyArray<ReadonlyDeep<T>> {} |
| 194 | |
| 195 | /** |
| 196 | * transform an object type into a readonly object type |
nothing calls this directly
no outgoing calls
no test coverage detected