@types/es6-shim
Advanced tools
Comparing version 0.31.32 to 0.31.33
@@ -5,2 +5,3 @@ // Type definitions for es6-shim v0.31.2 | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
// TypeScript Version: 2.2 | ||
@@ -597,3 +598,3 @@ declare type PropertyKey = string | number | symbol; | ||
interface WeakMap<K, V> { | ||
interface WeakMap<K extends object, V> { | ||
delete(key: K): boolean; | ||
@@ -606,4 +607,4 @@ get(key: K): V; | ||
interface WeakMapConstructor { | ||
new <K, V>(): WeakMap<K, V>; | ||
new <K, V>(iterable: IterableShim<[K, V]>): WeakMap<K, V>; | ||
new <K extends object, V>(): WeakMap<K, V>; | ||
new <K extends object, V>(iterable: IterableShim<[K, V]>): WeakMap<K, V>; | ||
prototype: WeakMap<any, any>; | ||
@@ -610,0 +611,0 @@ } |
{ | ||
"name": "@types/es6-shim", | ||
"version": "0.31.32", | ||
"description": "TypeScript definitions for es6-shim v0.31.2", | ||
"version": "0.31.33", | ||
"description": "TypeScript definitions for es6-shim", | ||
"license": "MIT", | ||
"author": "Ron Buckton <http://github.com/rbuckton>", | ||
"contributors": [ | ||
{ | ||
"name": "Ron Buckton", | ||
"url": "http://github.com/rbuckton" | ||
} | ||
], | ||
"main": "", | ||
@@ -14,4 +19,5 @@ "repository": { | ||
"dependencies": {}, | ||
"typings": "index.d.ts", | ||
"typesPublisherContentHash": "0ae2d804a1444c43e133e5594b175b32f9d50762660a6fb134c4ac8cb3e2d013" | ||
"peerDependencies": {}, | ||
"typesPublisherContentHash": "225ddf467da78d80c224294861eb94527be5c7178a86f997bb44a6d9f680e5db", | ||
"typeScriptVersion": "2.2" | ||
} |
@@ -5,12 +5,10 @@ # Installation | ||
# Summary | ||
This package contains type definitions for es6-shim v0.31.2 (https://github.com/paulmillr/es6-shim). | ||
This package contains type definitions for es6-shim (https://github.com/paulmillr/es6-shim). | ||
# Details | ||
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/types-2.0/es6-shim | ||
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/es6-shim | ||
Additional Details | ||
* Last updated: Mon, 19 Sep 2016 16:15:24 GMT | ||
* File structure: Mixed | ||
* Library Dependencies: none | ||
* Module Dependencies: none | ||
* Last updated: Mon, 17 Apr 2017 17:55:17 GMT | ||
* Dependencies: none | ||
* Global values: Map, Promise, Reflect, Set, WeakMap, WeakSet | ||
@@ -17,0 +15,0 @@ |
26726
574
17