@types/ember__polyfills
Advanced tools
Comparing version 4.0.1 to 4.0.2
// Type definitions for non-npm package @ember/polyfills 4.0 | ||
// Project: https://emberjs.com/api/ember/4.0/modules/@ember%2Fpolyfills | ||
// Definitions by: 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> | ||
@@ -18,5 +18,14 @@ // Peter Wagenet <https://github.com/wagenet> | ||
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[]): unknown; | ||
export function assign(target: object, final: undefined | null): never; |
{ | ||
"name": "@types/ember__polyfills", | ||
"version": "4.0.1", | ||
"version": "4.0.2", | ||
"description": "TypeScript definitions for @ember/polyfills", | ||
@@ -14,5 +14,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": "0251cf13c8e9ebbad2809cb6995cdac95f26bc41ce2a873f112b4ca076c757b0", | ||
"typesPublisherContentHash": "e6be715bea2e866255d7d6cf89ba3556729f48749e4b77b814b56a321e5c2515", | ||
"typeScriptVersion": "4.4" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 25 Oct 2022 20:03:10 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 [Chris Krycho](https://github.com/chriskrycho), [Dan Freeman](https://github.com/dfreeman), [James C. Davis](https://github.com/jamescdavis), and [Peter Wagenet](https://github.com/wagenet). | ||
These definitions were written by [Chris Krycho](https://github.com/chriskrycho), [Krystan HuffMenne](https://github.com/gitKrystan), [James C. Davis](https://github.com/jamescdavis), and [Peter Wagenet](https://github.com/wagenet). |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4616
32