Rocky_Mountain_Vending/.pnpm-store/v10/files/d8/7ed7e6d0a06dfaf3778916c1b551ab431343fff9931e7850b9ad1dab96dbc4ef75f840775d65b934cc485adbc7190a56e037bda2e69c282ad68eafdf8e436a
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

26 lines
507 B
Text

import type {GreaterThanOrEqual} from './greater-than-or-equal';
/**
Returns a boolean for whether a given number is less than another number.
@example
```
import type {LessThan} from 'type-fest';
LessThan<1, -5>;
//=> false
LessThan<1, 1>;
//=> false
LessThan<1, 5>;
//=> true
```
*/
export type LessThan<A extends number, B extends number> = number extends A | B
? never
: GreaterThanOrEqual<A, B> extends infer Result
? Result extends true
? false
: true
: never; // Should never happen