From 42cf9c49622606b13fee07c175781502e4639e07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yago=20Tom=C3=A9?= Date: Mon, 8 Jul 2019 17:08:55 -0300 Subject: [PATCH] Add optional params to Parse PushData object (#36659) --- types/parse/index.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/types/parse/index.d.ts b/types/parse/index.d.ts index dbebc03e96..47f9d52ae6 100644 --- a/types/parse/index.d.ts +++ b/types/parse/index.d.ts @@ -107,7 +107,7 @@ declare namespace Parse { interface AuthData { [key: string]: any } - + class BaseObject implements IBaseObject { toJSON(): any; } @@ -1012,6 +1012,8 @@ subscription.on('close', () => {}); badge?: string; sound?: string; title?: string; + notification?: any; + content_available?: any; } interface SendOptions extends UseMasterKeyOption {