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