persona-community-5/.pnpm-store/v3/files/36/8fd4bd0f8b2dfd12830905c3824d2bbb977926948993276708595bbbf065bf07157dfce01cb27313441edeb94a5894ced3f685c2b74a4eb61738f94a179b6c
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

46 lines
1.5 KiB
Plaintext

import type {IfAny} from './if-any';
import type {IfNever} from './if-never';
import type {IfNotAnyOrNever} from './internal';
/**
Create a type that requires exactly one of the given keys and disallows more. The remaining keys are kept as is.
Use-cases:
- Creating interfaces for components that only need one of the keys to display properly.
- Declaring generic keys in a single place for a single use-case that gets narrowed down via `RequireExactlyOne`.
The caveat with `RequireExactlyOne` is that TypeScript doesn't always know at compile time every key that will exist at runtime. Therefore `RequireExactlyOne` can't do anything to prevent extra keys it doesn't know about.
@example
```
import type {RequireExactlyOne} from 'type-fest';
type Responder = {
text: () => string;
json: () => string;
secure: boolean;
};
const responder: RequireExactlyOne<Responder, 'text' | 'json'> = {
// Adding a `text` key here would cause a compile error.
json: () => '{"message": "ok"}',
secure: true
};
```
@category Object
*/
export type RequireExactlyOne<ObjectType, KeysType extends keyof ObjectType = keyof ObjectType> =
IfNotAnyOrNever<ObjectType,
IfNever<KeysType,
never,
_RequireExactlyOne<ObjectType, IfAny<KeysType, keyof ObjectType, KeysType>>
>>;
type _RequireExactlyOne<ObjectType, KeysType extends keyof ObjectType> =
{[Key in KeysType]: (
Required<Pick<ObjectType, Key>> &
Partial<Record<Exclude<KeysType, Key>, never>>
)}[KeysType] & Omit<ObjectType, KeysType>;