# view of

Source: docs/source/exhibits/foundations/type-utils/view-of.ts

```ts
import type { ViewOf } from "atom.io/foundations/type-utils"

type ListView = ViewOf<string[]> // readonly string[]
type SetView = ViewOf<Set<string>> // ReadonlySet<string>
```
