The Omit helper type in TypeScript

TypeScript 3.5 added an Omit<T, K> helper type which lets us create an object type that omits specific properties from another object type. Read more

Similar