import { If } from "./if"; /** * Returns the second argument if the first argument is `false` (defaults to `true`), otherwise returns the third argument (defaults to `false`) * @example * ```ts * // valid * type Case1 = IfNot * // invalid * type Case2 = IfNot * ``` */ export type IfNot = If< Condition, IfFalse, IfTrue >;