# enp.typing.ArrayLike

[[[Source]]](https://github.com/google/etils/tree/main/etils/enp/array_types/typing.py#L120)

ArrayLike indicates that any `np.array` input is also supported.
For example: `ArrayLike[i32[2]]` accept `(28, 28)`, `[x, y]`, `np.ones((2,))`

```python
ArrayLike = Union[_ArrayT, Tuple[Any, ...], List[Any]]
```