🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
281 B
TypeScript
Executable File
9 lines
281 B
TypeScript
Executable File
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>;
|