🐵指尖猴
📚编程代码TypeScript类型工具
0字/分🎯0%
type Partial<T> = { [P in keyof T]?: T[P] }; type ReadOnly = Readonly<User>; type Names = Pick<User, 'name' | 'email'>; type WithoutId = Omit<User, 'id'>; type Status = 'active' | 'inactive' | 'pending';
🐵
t左手食指
ESC 暂停 退格