CamelCaseRecord overview

Added in v2.0.0


Table of contents


Combinators

CamelCaseRecord

A record combinator which converts the keys of a record to camel case.

Signature

export declare const CamelCaseRecord: <I, O>(
  codomain: Schema<I, O>,
  mergeStrategy?: MergeStrategy | undefined
) => Schema<
  Readonly<Record<Opaque<string, CamelCaseStringBrand>, I>>,
  Readonly<Record<Opaque<string, CamelCaseStringBrand>, O>>
>

Added in v2.0.0