UNPKG

type-plus

Version:
10 lines 241 B
/** * 🦴 *utilities* * ㊙️ *internal* * * Merge the input Options `I` with the default Options `D`. */ export type MergeOptions<I, D> = { [k in keyof D]: k extends keyof I ? I[k] : D[k]; }; //# sourceMappingURL=options.d.ts.map