Add optional params to Parse PushData object (#36659)

This commit is contained in:
Yago Tomé 2019-07-08 17:08:55 -03:00 committed by Armando Aguirre
parent cd1c0a03d3
commit 42cf9c4962

View File

@ -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 {