Rocky_Mountain_Vending/.pnpm-store/v10/files/40/a8cd41f3037e0da0c641e8c05b2d3f6a2f2a1ee5051953cab833e34f2c49ded86896b250406cfce3d28472bf0f9f5a9861b88444e1c93d9d13eda5b216d140
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

22 lines
470 B
Text

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