Sha256: e08e58ac493a27b29ceee80da90bb31ec64341b520907d480df6244cdbec01f8
Contents?: true
Size: 635 Bytes
Versions: 52
Compression:
Stored size: 635 Bytes
Contents
import type {DelimiterCasedProperties} from './delimiter-cased-properties'; /** Convert object properties to snake case but not recursively. This can be useful when, for example, converting some API types from a different style. @see SnakeCase @see SnakeCasedPropertiesDeep @example ``` import type {SnakeCasedProperties} from 'type-fest'; interface User { userId: number; userName: string; } const result: SnakeCasedProperties<User> = { user_id: 1, user_name: 'Tom', }; ``` @category Change case @category Template literal @category Object */ export type SnakeCasedProperties<Value> = DelimiterCasedProperties<Value, '_'>;
Version data entries
52 entries across 52 versions & 3 rubygems