Rocky_Mountain_Vending/.pnpm-store/v10/files/90/d6aad5c5b595f1307428c99c1d12e7e2a4924f9c154b48d8fe9c686de343047598305be922a3b99942a735b5819d15e7199bb272066525609b8b38e5094be1
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

46 lines
1.2 KiB
Text

import type {RequireExactlyOne} from './require-exactly-one';
import type {IfNotAnyOrNever, RequireNone} from './internal';
import type {IfNever} from './if-never';
import type {IfAny} from './if-any';
/**
Create a type that requires exactly one of the given keys and disallows more, or none of the given keys. The remaining keys are kept as is.
@example
```
import type {RequireOneOrNone} from 'type-fest';
type Responder = RequireOneOrNone<{
text: () => string;
json: () => string;
secure: boolean;
}, 'text' | 'json'>;
const responder1: Responder = {
secure: true
};
const responder2: Responder = {
text: () => '{"message": "hi"}',
secure: true
};
const responder3: Responder = {
json: () => '{"message": "ok"}',
secure: true
};
```
@category Object
*/
export type RequireOneOrNone<ObjectType, KeysType extends keyof ObjectType = keyof ObjectType> =
IfNotAnyOrNever<ObjectType,
IfNever<KeysType,
ObjectType,
_RequireOneOrNone<ObjectType, IfAny<KeysType, keyof ObjectType, KeysType>>
>>;
type _RequireOneOrNone<ObjectType, KeysType extends keyof ObjectType> = (
| RequireExactlyOne<ObjectType, KeysType>
| RequireNone<KeysType>
) & Omit<ObjectType, KeysType>; // Ignore unspecified keys.