UNPKG

type-fest

Version:

A collection of essential TypeScript types

47 lines (36 loc) 1.25 kB
import type {CamelCaseOptions, _DefaultCamelCaseOptions} from './camel-case.d.ts'; import type {ApplyDefaultOptions} from './internal/index.d.ts'; import type {PascalCase} from './pascal-case.d.ts'; /** Convert top-level object properties to pascal case. This can be useful when, for example, converting some API types from a different style. @see {@link PascalCase} @see {@link PascalCasedPropertiesDeep} @example ``` import type {PascalCasedProperties} from 'type-fest'; type User = { userId: number; userName: string; }; const result: PascalCasedProperties<User> = { UserId: 1, UserName: 'Tom', }; const preserveConsecutiveUppercase: PascalCasedProperties<{fooBAR: string}, {preserveConsecutiveUppercase: true}> = { FooBAR: 'string', }; const splitOnPunctuation: PascalCasedProperties<{'foo::bar': string}, {splitOnPunctuation: true}> = { FooBar: 'string', }; ``` @category Change case @category Template literal @category Object */ export type PascalCasedProperties<Value, Options extends CamelCaseOptions = {}> = Value extends Function ? Value : Value extends Array<infer U> ? Value : {[K in keyof Value as PascalCase<K, ApplyDefaultOptions<CamelCaseOptions, _DefaultCamelCaseOptions, Options>>]: Value[K]}; export {};