Remove properties from a type.
Omit<User, 'password'>
interface User { id: number; password: string; } type PublicUser = any; // TODO