T
K
tstype A = Pick<{ a: string; b: string }, 'a'>; // {a: string}
tstype A = Omit<{ a: string; b: string }, 'a'>; // {b: string}
U
G
U - E