elearning/Frontend-Learner/node_modules/smob/dist/presets.d.ts

9 lines
281 B
TypeScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
import type { MergerResult } from './type';
/**
* Assign source attributes to a target object.
*
* @param target
* @param sources
*/
export declare function assign<A extends Record<string, any>, B extends Record<string, any>[]>(target: A, ...sources: B): A & MergerResult<B>;