Type Alias Merge<I, D>

Merge<I, D>: {
    [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