DEV Community

Cover image for TypeScript Readonly Utility type
Chris Bongers for This is Learning

Posted on • Updated on • Originally published at daily-dev-tips.com

TypeScript Readonly Utility type

This is the last of the commonly known interface modifying utility types.
Do note there are a few more, but we'll get to those in a later stage as they are a bit more advanced.

I want to go over the Readonly utility type in this article.

Using the read-only type, you can transform a type to be read-only, making it impossible to change after the initial assignment.

Using the Readonly Utility type

Let's retake this user interface.

interface User {
  id?: number;
  firstname: string;
  lastname: string;
  age?: number;
}
Enter fullscreen mode Exit fullscreen mode

If we would now assign some information to this object, we could always re-assign it later in our code.

const user: User = {
  firstname: 'Chris',
  lastname: 'Bongers',
};
user.id = 123;
Enter fullscreen mode Exit fullscreen mode

We can now modify any of the existing properties to be a new value.

And we don't always want that.

So in order to prevent this from happening you can wrap the type used in a Readonly type like so:

const user: Readonly<User> = {
  firstname: 'Chris',
  lastname: 'Bongers',
};
Enter fullscreen mode Exit fullscreen mode

Which will give us the following TypeScript error.

TypeScript readonly type

This Readonly type can be super helpful to represent frozen objects.
Or objects that should not mutate on their own.

Thank you for reading, and let's connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Top comments (6)

Collapse
 
athifbinu profile image
Athif binu

Tanks

Collapse
 
dailydevtips1 profile image
Chris Bongers

Glad you enjoyed it 🙌

Collapse
 
athifbinu profile image
Athif binu • Edited

ya sir its good tanks for the for the valuable information.
sir iam fresher in developer i want to your valuable mentoring support Tanks.

Thread Thread
 
athifbinu profile image
Athif binu

Tanks sir i want to your valuable Mentoring support .

Collapse
 
spierala profile image
Florian Spier

Does ReadOnly prevent mutating a nested object?

E.g. if User had an Address object, is it still possible to mutate the address?

Collapse
 
dailydevtips1 profile image
Chris Bongers

Yes, but you can create a deepReadOnly like described in this PR:
github.com/Microsoft/TypeScript/pu...

Might actually write it out as well