Let's say we have an interface like this:
interface Person {
name: string;
age: number;
}
I want to call Readonly and create a readonly version of the interface, e.g.
interface PersonReadonly extends Readonly<Person> {}
which will be equivalent to writing
interface PersonReadonly {
readonly name: string;
readonly age: number;
}
Can we write such a Readonly generic interface, or is it written already?
You can do:
type PersonReadonly = Readonly<Person>
But it is not an interface. For example, you can't add a new member somewhere else.
Edit from May, 2017: Since TS 2.2 (February, 2017), interfaces can be derived from types.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With