Files
memecoin-botV2/.pnpm-store/v10/files/ba/5993fa61a45796061a9e6d5a26394459cc7f68cea0a398cbc098c08197b3652649c8dadcadfb37686867a650b3b45ecd8f2b6f8ad203fe90a32404c0e8accf

9 lines
425 B
Plaintext

/**
* 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
*/
export declare function applyDefault<User extends readonly unknown[], Default extends User>(defaultOptions: Readonly<Default>, userOptions: Readonly<User> | null): Default;