UNPKG

@devlander/utils

Version:

Comprehensive JavaScript and TypeScript utilities for seamless development. Includes object manipulation, data validation, and more.

4 lines (3 loc) 236 B
import { MergeableInput, MergeableValue } from "../types/value.types"; export type MergedValue = MergeableValue | Record<string, MergeableValue>; export declare function merge(...objs: MergeableInput[]): Record<string, MergeableValue>;