Rocky_Mountain_Vending/.pnpm-store/v10/files/99/71d2c39a732a6782e138f94dc9cd12e0805b38b94cf3cff9331746769620512f1f009874fb7ed4d5b5e7ce50a75aabc3fda213273e25bc46dd207ca8eaf09a
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

24 lines
445 B
Text

/**
Represents a set with `unknown` value.
Use case: You want a type that all sets can be assigned to, but you don't care about the value.
@example
```
import type {UnknownSet} from 'type-fest';
type IsSet<T> = T extends UnknownSet ? true : false;
type A = IsSet<Set<string>>;
//=> true
type B = IsSet<ReadonlySet<number>>;
//=> true
type C = IsSet<string>;
//=> false
```
@category Type
*/
export type UnknownSet = ReadonlySet<unknown>;