FalsyFalsy @exampletype Various = 'a' | 'b' | undefined | false; // Expect: "a" | "b" Exclude<Various, Falsy>; type Falsy = | false | "" | 0 | null | undefined;§Type§false | "" | 0 | null | undefined[src]