Type Alias Merge<I, D>

Merge: { [k in keyof D]: k extends keyof I ? I[k] : D[k] }

🦴 utilities ㊙️ internal

Merge the input Options I with the default Options D.

Type Parameters

  • I
  • D