@types/es6-shim
Advanced tools
Comparing version 0.31.36 to 0.31.37
@@ -7,3 +7,4 @@ // Type definitions for es6-shim v0.31.2 | ||
declare type PropertyKey = string | number | symbol; | ||
// TODO: As of TypeScript@2.9 there is a global type PropertyKey that should be used instead of this. | ||
declare type KeyOfProperty = string | number | symbol; | ||
@@ -629,13 +630,13 @@ interface IteratorResult<T> { | ||
function construct(target: Function, argumentsList: ArrayLike<any>): any; | ||
function defineProperty(target: any, propertyKey: PropertyKey, attributes: PropertyDescriptor): boolean; | ||
function deleteProperty(target: any, propertyKey: PropertyKey): boolean; | ||
function defineProperty(target: any, propertyKey: KeyOfProperty, attributes: PropertyDescriptor): boolean; | ||
function deleteProperty(target: any, propertyKey: KeyOfProperty): boolean; | ||
function enumerate(target: any): IterableIteratorShim<any>; | ||
function get(target: any, propertyKey: PropertyKey, receiver?: any): any; | ||
function getOwnPropertyDescriptor(target: any, propertyKey: PropertyKey): PropertyDescriptor; | ||
function get(target: any, propertyKey: KeyOfProperty, receiver?: any): any; | ||
function getOwnPropertyDescriptor(target: any, propertyKey: KeyOfProperty): PropertyDescriptor; | ||
function getPrototypeOf(target: any): any; | ||
function has(target: any, propertyKey: PropertyKey): boolean; | ||
function has(target: any, propertyKey: KeyOfProperty): boolean; | ||
function isExtensible(target: any): boolean; | ||
function ownKeys(target: any): Array<PropertyKey>; | ||
function ownKeys(target: any): Array<KeyOfProperty>; | ||
function preventExtensions(target: any): boolean; | ||
function set(target: any, propertyKey: PropertyKey, value: any, receiver?: any): boolean; | ||
function set(target: any, propertyKey: KeyOfProperty, value: any, receiver?: any): boolean; | ||
function setPrototypeOf(target: any, proto: any): boolean; | ||
@@ -658,15 +659,15 @@ } | ||
function construct(target: Function, argumentsList: ArrayLike<any>): any; | ||
function defineProperty(target: any, propertyKey: PropertyKey, attributes: PropertyDescriptor): boolean; | ||
function deleteProperty(target: any, propertyKey: PropertyKey): boolean; | ||
function defineProperty(target: any, propertyKey: KeyOfProperty, attributes: PropertyDescriptor): boolean; | ||
function deleteProperty(target: any, propertyKey: KeyOfProperty): boolean; | ||
function enumerate(target: any): Iterator<any>; | ||
function get(target: any, propertyKey: PropertyKey, receiver?: any): any; | ||
function getOwnPropertyDescriptor(target: any, propertyKey: PropertyKey): PropertyDescriptor; | ||
function get(target: any, propertyKey: KeyOfProperty, receiver?: any): any; | ||
function getOwnPropertyDescriptor(target: any, propertyKey: KeyOfProperty): PropertyDescriptor; | ||
function getPrototypeOf(target: any): any; | ||
function has(target: any, propertyKey: PropertyKey): boolean; | ||
function has(target: any, propertyKey: KeyOfProperty): boolean; | ||
function isExtensible(target: any): boolean; | ||
function ownKeys(target: any): Array<PropertyKey>; | ||
function ownKeys(target: any): Array<KeyOfProperty>; | ||
function preventExtensions(target: any): boolean; | ||
function set(target: any, propertyKey: PropertyKey, value: any, receiver?: any): boolean; | ||
function set(target: any, propertyKey: KeyOfProperty, value: any, receiver?: any): boolean; | ||
function setPrototypeOf(target: any, proto: any): boolean; | ||
} | ||
} |
{ | ||
"name": "@types/es6-shim", | ||
"version": "0.31.36", | ||
"version": "0.31.37", | ||
"description": "TypeScript definitions for es6-shim", | ||
@@ -16,8 +16,8 @@ "license": "MIT", | ||
"type": "git", | ||
"url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git.git" | ||
}, | ||
"scripts": {}, | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "76008079288f15fdfdcfc0cdf79b2a6620fa7a69ee6fb94778f714ac128a51bd", | ||
"typesPublisherContentHash": "b528d358a64525fd91b5a06b1d2a3013449ad780e8aaae90c1d2867f48e51bfe", | ||
"typeScriptVersion": "2.2" | ||
} |
@@ -8,6 +8,6 @@ # Installation | ||
# Details | ||
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/es6-shim | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped.git/tree/master/types/es6-shim | ||
Additional Details | ||
* Last updated: Fri, 09 Mar 2018 00:40:02 GMT | ||
* Last updated: Tue, 08 May 2018 16:41:34 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: Map, Promise, Reflect, Set, WeakMap, WeakSet |
Sorry, the diff of this file is not supported yet
574
26897