Sha256: 755bcc456b4dd032244b51a8b4fe68ee3b2d2e463cf795f3fde970bb3f269fb1
Contents?: true
Size: 1.03 KB
Versions: 33
Compression:
Stored size: 1.03 KB
Contents
import type {PascalCase} from './pascal-case'; /** Convert object properties to pascal case recursively. This can be useful when, for example, converting some API types from a different style. @see PascalCase @see PascalCasedProperties @example ``` import type {PascalCasedPropertiesDeep} from 'type-fest'; interface User { userId: number; userName: string; } interface UserWithFriends { userInfo: User; userFriends: User[]; } const result: PascalCasedPropertiesDeep<UserWithFriends> = { UserInfo: { UserId: 1, UserName: 'Tom', }, UserFriends: [ { UserId: 2, UserName: 'Jerry', }, { UserId: 3, UserName: 'Spike', }, ], }; ``` @category Change case @category Template literal @category Object */ export type PascalCasedPropertiesDeep<Value> = Value extends Function | Date | RegExp ? Value : Value extends Array<infer U> ? Array<PascalCasedPropertiesDeep<U>> : Value extends Set<infer U> ? Set<PascalCasedPropertiesDeep<U>> : { [K in keyof Value as PascalCase<K>]: PascalCasedPropertiesDeep<Value[K]>; };
Version data entries
33 entries across 33 versions & 1 rubygems