# @types/object-assign

> TypeScript definitions for object-assign

Latest version **4.0.33** (published 2023-11-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install @types/object-assign
pnpm add @types/object-assign
yarn add @types/object-assign
bun add @types/object-assign
```

## Health

**Score 45/100 (D)** — status: abandoned.

Positive: has types; no vulnerabilities; high maintenance score; popular repo; extremely popular.

Warnings: low downloads; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 4.0.33 |
| Published | 2023-11-07 |
| First published | 2016-05-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 51441 |
| Maintainers | types |

## Links

- npm: https://www.npmjs.com/package/@types/object-assign
- Repository: https://github.com/DefinitelyTyped/DefinitelyTyped
- Homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/object-assign
- npm.io page: https://npm.io/package/@types/object-assign

## Recent versions

- 4.0.33 (latest) — 2023-11-07
- 4.0.31 (ts4.3) — 2023-09-03
- 4.0.30 (ts2.0) — 2016-10-26
- 4.0.32 — 2023-10-18
- 4.0.29 — 2016-09-19
- 4.0.28 — 2016-07-14
- 4.0.27-alpha — 2016-07-08
- 4.0.26-alpha — 2016-07-04
- 4.0.25-alpha — 2016-07-02
- 4.0.24-alpha — 2016-07-01
- 4.0.23-alpha — 2016-07-01
- 4.0.22-alpha — 2016-05-25
- 4.0.21-alpha — 2016-05-20
- 4.0.16-alpha — 2016-05-19
- 4.0.15-alpha — 2016-05-17

## README

# Installation
> `npm install --save @types/object-assign`

# Summary
This package contains type definitions for object-assign (https://github.com/sindresorhus/object-assign).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/object-assign.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/object-assign/index.d.ts)
````ts
declare function objectAssign<T, U>(target: T, source: U): T & U;
declare function objectAssign<T, U, V>(target: T, source1: U, source2: V): T & U & V;
declare function objectAssign<T, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
declare function objectAssign<T, U, V, W, Q>(
    target: T,
    source1: U,
    source2: V,
    source3: W,
    source4: Q,
): T & U & V & W & Q;
declare function objectAssign<T, U, V, W, Q, R>(
    target: T,
    source1: U,
    source2: V,
    source3: W,
    source4: Q,
    source5: R,
): T & U & V & W & Q & R;
declare function objectAssign(target: any, ...sources: any[]): any;
declare namespace objectAssign {}
export = objectAssign;

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 09:09:39 GMT
 * Dependencies: none

# Credits
These definitions were written by [Christopher Brown](https://github.com/chbrown).

---
_Source: https://npm.io/package/@types/object-assign · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
