MyRequired

Medium

Implement MyRequired — opposite of Partial. Makes all optional properties required.

Examples:

Input 1: type RequiredUser = MyRequired<User>
Output 1: { id: number; name: string }
Output
Run your code to see results.