Sha256: d280c3b34e25d02998825aca95848a73550edc0e6cc9d7e3fb59fab7caffd023
Contents?: true
Size: 763 Bytes
Versions: 33
Compression:
Stored size: 763 Bytes
Contents
import {DelimiterCasedPropertiesDeep} from './delimiter-cased-properties-deep'; /** Convert object properties to snake case recursively. This can be useful when, for example, converting some API types from a different style. @see SnakeCase @see SnakeCasedProperties @example ``` interface User { userId: number; userName: string; } interface UserWithFriends { userInfo: User; userFriends: User[]; } const result: SnakeCasedPropertiesDeep<UserWithFriends> = { user_info: { user_id: 1, user_name: 'Tom', }, user_friends: [ { user_id: 2, user_name: 'Jerry', }, { user_id: 3, user_name: 'Spike', }, ], }; ``` @category Template Literals */ export type SnakeCasedPropertiesDeep<Value> = DelimiterCasedPropertiesDeep<Value, '_'>;
Version data entries
33 entries across 33 versions & 1 rubygems