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;