Urara-Blog/node_modules/.pnpm-store/v3/files/f8/f5b801f44bf4b599148c7d17051b2952c2503ecae9946043d79b8dbde03a2f695f9fc09eca89436ab4201950b1111490d31e17b98641940387576b75a15513
2022-08-14 01:14:53 +08:00

10 lines
No EOL
491 B
Text

/**
* Pure function - doesn't mutate either parameter!
* Uses the default options and overrides with the options provided by the user
* @param defaultOptions the defaults
* @param userOptions the user opts
* @returns the options with defaults
*/
declare function applyDefault<TUser extends readonly unknown[], TDefault extends TUser>(defaultOptions: Readonly<TDefault>, userOptions: Readonly<TUser> | null): TDefault;
export { applyDefault };
//# sourceMappingURL=applyDefault.d.ts.map