# Readonly

`import { Readonly } from "destack:types";`

Make `T` deeply readonly.

```ds title="Readonly"
export type Readonly<T> = readonly T
```

[language/library/src/types/object.ds:25](https://github.com/destack-sh/destack/blob/main/language/library/src/types/object.ds#L25)
