persona-community-5/.pnpm-store/v3/files/7c/753a57f9a7ca8ba91dc7f13ee9e479ca2424796fa5bc5add1478e49c3534bce5ddc07a1e13693677a3331c6dbb3ec66aded45ba1ba1a64befd0cf7e9bdf7ed
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

10 lines
485 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
*/
declare function applyDefault<User extends readonly unknown[], Default extends User>(defaultOptions: Readonly<Default>, userOptions: Readonly<User> | null): Default;
export { applyDefault };
//# sourceMappingURL=applyDefault.d.ts.map