Type alias CloneMode

CloneMode: "deep" | "copy" | "none"

Supported cloning modes.

  • "deep": Performs a recursive deep clone of the object.
  • "copy": Performs a shallow copy of the object.
  • "none": No cloning. Uses the value as given.