frontend/.pnpm-store/v3/files/a6/a79180d4204c3c4abf11e374af0865544934c265e3ac7f516e33271e2d0945fb839f3e82a5687ad62a0bf9ed4c3facef36d5e021e73efe2938542955687df8

35 lines
697 B
Plaintext

import type {PascalCase} from './pascal-case';
/**
Convert object properties to pascal case but not recursively.
This can be useful when, for example, converting some API types from a different style.
@see PascalCase
@see PascalCasedPropertiesDeep
@example
```
import type {PascalCasedProperties} from 'type-fest';
interface User {
userId: number;
userName: string;
}
const result: PascalCasedProperties<User> = {
UserId: 1,
UserName: 'Tom',
};
```
@category Change case
@category Template literal
@category Object
*/
export type PascalCasedProperties<Value> = Value extends Function
? Value
: Value extends Array<infer U>
? Value
: {[K in keyof Value as PascalCase<K>]: Value[K]};