Skip to main content
✏️ Code CompletionTS TypeScript Hard+35 XP

Mapped Type

Complete the mapped type.

✏️ Fill in the blank
type Readonly<T> = {
    ___[P in keyof T]: T[P];
};

✏️ Type the missing code: