Represents a mapping of an object property to a target property with an optional conversion mapping.

Hierarchy

  • PropertyMap

Indexable

[id: string]: {
    convert?: ((value: any, from: any, to: any) => any);
    target: string;
}
  • Optional convert?: ((value: any, from: any, to: any) => any)
      • (value: any, from: any, to: any): any
      • Parameters

        • value: any
        • from: any
        • to: any

        Returns any

  • target: string

Constructors

Constructors