Assert that a boolean type resolves to false.
false
Boolean type that must be false
Produces a compiler error if the provided type is not exactly false.
type A = AssertFalse< false >; // ✓type B = AssertFalse< true >; // ✗ TS error Copy
type A = AssertFalse< false >; // ✓type B = AssertFalse< true >; // ✗ TS error
Assert that a boolean type resolves to
false.