Skip to content
Entangle UI v0.13.0

StrictExclude

StrictExclude<T, U> = Exclude<T, U>

Defined in: src/types/utilities.ts:62

Strict exclude that shows what was excluded

T

U extends T

type Colors = 'red' | 'blue' | 'green'
type WarmColors = StrictExclude<Colors, 'blue'> // 'red' | 'green'