@types/ember__polyfills
Advanced tools
Comparing version 3.12.2 to 3.12.3
@@ -5,3 +5,3 @@ // Type definitions for non-npm package @ember/polyfills 3.12 | ||
// Chris Krycho <https://github.com/chriskrycho> | ||
// Dan Freeman <https://github.com/dfreeman> | ||
// Krystan HuffMenne <https://github.com/gitKrystan> | ||
// James C. Davis <https://github.com/jamescdavis> | ||
@@ -17,4 +17,13 @@ // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
export function assign<T extends object, U extends object>(target: T, source: U): Mix<T, U>; | ||
export function assign<T extends object, U extends object, V extends object>(target: T, source1: U, source2: V): Mix3<T, U, V>; | ||
export function assign<T extends object, U extends object, V extends object, W extends object>(target: T, source1: U, source2: V, source3: W): Mix4<T, U, V, W>; | ||
export function assign<T extends object, U extends object, V extends object>( | ||
target: T, | ||
source1: U, | ||
source2: V, | ||
): Mix3<T, U, V>; | ||
export function assign<T extends object, U extends object, V extends object, W extends object>( | ||
target: T, | ||
source1: U, | ||
source2: V, | ||
source3: W, | ||
): Mix4<T, U, V, W>; | ||
export function assign(target: object, ...sources: object[]): any; | ||
@@ -21,0 +30,0 @@ export function assign(target: object, final: undefined | null): never; |
{ | ||
"name": "@types/ember__polyfills", | ||
"version": "3.12.2", | ||
"version": "3.12.3", | ||
"description": "TypeScript definitions for @ember/polyfills ", | ||
@@ -19,5 +19,5 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ember__polyfills", | ||
{ | ||
"name": "Dan Freeman", | ||
"url": "https://github.com/dfreeman", | ||
"githubUsername": "dfreeman" | ||
"name": "Krystan HuffMenne", | ||
"url": "https://github.com/gitKrystan", | ||
"githubUsername": "gitKrystan" | ||
}, | ||
@@ -39,4 +39,4 @@ { | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "67a32437f5d1e52c1b6db4f4633d9cc126b328a590d4813362cadd49cf3cf7ea", | ||
"typeScriptVersion": "3.8" | ||
"typesPublisherContentHash": "5cd5c515ff45ff063e7b427b3abac14236e6b37e556d9144ccc2b9c79ff17a9f", | ||
"typeScriptVersion": "4.3" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Fri, 21 Jan 2022 19:02:09 GMT | ||
* Last updated: Tue, 13 Jun 2023 20:03:09 GMT | ||
* Dependencies: none | ||
@@ -17,2 +17,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by [Mike North](https://github.com/mike-north), [Chris Krycho](https://github.com/chriskrycho), [Dan Freeman](https://github.com/dfreeman), and [James C. Davis](https://github.com/jamescdavis). | ||
These definitions were written by [Mike North](https://github.com/mike-north), [Chris Krycho](https://github.com/chriskrycho), [Krystan HuffMenne](https://github.com/gitKrystan), and [James C. Davis](https://github.com/jamescdavis). |
4687
35