Add static createWithoutData for Parse.Object

This commit is contained in:
Nam Vu
2017-07-07 10:57:57 +07:00
parent 135c72d992
commit f8e1650033
+1
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;