Introduction
The Exclude type helps you remove specific types from a group of types. It makes your code clearer and safer by excluding unwanted types.
When you want to create a new type without certain values from an existing type.
When you want to prevent some values from being used in a function or variable.
When you want to narrow down a type by removing options that don't apply.
When you want to handle only specific cases in your code by excluding others.