From f8e165003397be393b8ce962329a21ff4e574af2 Mon Sep 17 00:00:00 2001 From: Nam Vu Date: Fri, 7 Jul 2017 10:57:57 +0700 Subject: [PATCH] Add static createWithoutData for Parse.Object --- types/parse/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/parse/index.d.ts b/types/parse/index.d.ts index b4cd725529..8dfcb670a7 100644 --- a/types/parse/index.d.ts +++ b/types/parse/index.d.ts @@ -334,6 +334,7 @@ declare namespace Parse { static destroyAll(list: T[], options?: Object.DestroyAllOptions): Promise; static saveAll(list: T[], options?: Object.SaveAllOptions): Promise; static registerSubclass(className: string, clazz: new (options?: any) => T): void; + static createWithoutData(id: string): T; initialize(): void; add(attr: string, item: any): this;