@types/parse
Advanced tools
Comparing version 2.4.0 to 2.4.1
@@ -16,7 +16,7 @@ // Type definitions for parse 2.4 | ||
var applicationId: string; | ||
var javaScriptKey: string | undefined; | ||
var masterKey: string | undefined; | ||
var serverURL: string; | ||
var VERSION: string; | ||
let applicationId: string; | ||
let javaScriptKey: string | undefined; | ||
let masterKey: string | undefined; | ||
let serverURL: string; | ||
let VERSION: string; | ||
@@ -101,9 +101,15 @@ interface SuccessOption { | ||
then<U>(resolvedCallback: (...values: T[]) => IPromise<U>, | ||
rejectedCallback?: (reason: any) => IPromise<U>): IPromise<U>; | ||
rejectedCallback?: (reason: any) => IPromise<U>): IPromise<U>; | ||
then<U>(resolvedCallback: (...values: T[]) => U, | ||
rejectedCallback?: (reason: any) => IPromise<U>): IPromise<U>; | ||
rejectedCallback?: (reason: any) => IPromise<U>): IPromise<U>; | ||
then<U>(resolvedCallback: (...values: T[]) => U, | ||
rejectedCallback?: (reason: any) => U): IPromise<U>; | ||
rejectedCallback?: (reason: any) => U): IPromise<U>; | ||
} | ||
interface Pointer { | ||
__type: string; | ||
className: string; | ||
objectId: string; | ||
} | ||
interface IBaseObject { | ||
@@ -362,2 +368,3 @@ toJSON(): any; | ||
increment(attr: string, amount?: number): any; | ||
isNew(): boolean; | ||
isValid(): boolean; | ||
@@ -373,2 +380,3 @@ op(attr: string): any; | ||
setACL(acl: ACL, options?: SuccessFailureOptions): boolean; | ||
toPointer(): Pointer; | ||
unset(attr: string, options?: any): any; | ||
@@ -932,3 +940,3 @@ validate(attrs: any, options?: SuccessFailureOptions): boolean; | ||
*/ | ||
var HTTPOptions: new () => HTTPOptions; | ||
let HTTPOptions: new () => HTTPOptions; | ||
interface HTTPOptions { | ||
@@ -935,0 +943,0 @@ /** |
{ | ||
"name": "@types/parse", | ||
"version": "2.4.0", | ||
"version": "2.4.1", | ||
"description": "TypeScript definitions for parse", | ||
@@ -38,4 +38,4 @@ "license": "MIT", | ||
}, | ||
"typesPublisherContentHash": "0fbc2053bcfb01e39f6e59c0033582efddcecab682e98799c485606a5b896fd6", | ||
"typesPublisherContentHash": "e50ad73d4b8906283683c65143da8b87552966491ef12921e32e09ea3d1957c7", | ||
"typeScriptVersion": "2.3" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Wed, 06 Sep 2017 21:43:54 GMT | ||
* Last updated: Mon, 06 Nov 2017 15:19:08 GMT | ||
* Dependencies: node, jquery, underscore | ||
@@ -14,0 +14,0 @@ * Global values: Parse |
Sorry, the diff of this file is not supported yet
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
44760
978