typescript-utility-types
Installation
SKILL.md
TypeScript Utility Types
Master TypeScript's powerful type system including built-in utility types, mapped types, conditional types, and advanced type manipulation techniques for creating flexible, type-safe code.
Built-in Utility Types
Partial and Required
interface User {
id: string;
name: string;
email: string;
age: number;
}