UNPKG

@devlander/utils

Version:

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

5 lines (4 loc) 189 B
import { AnyObject } from "../types/value.types"; export declare const extend: <T, U>(a: T, b: U, thisArg?: AnyObject, { allOwnKeys }?: { allOwnKeys?: boolean | undefined; }) => T & U;