Merge pull request #17825 from superbigsoft/master

Add static createWithoutData for Parse.Object
This commit is contained in:
Ryan Cavanaugh
2017-07-12 14:15:57 -07:00
committed by GitHub

View File

@@ -334,6 +334,7 @@ declare namespace Parse {
static destroyAll<T>(list: T[], options?: Object.DestroyAllOptions): Promise<T[]>;
static saveAll<T extends Object>(list: T[], options?: Object.SaveAllOptions): Promise<T[]>;
static registerSubclass<T extends Object>(className: string, clazz: new (options?: any) => T): void;
static createWithoutData<T extends Object>(id: string): T;
initialize(): void;
add(attr: string, item: any): this;