Notification interface

可以包含在消息 中的通知。

签名

export interface Notification 

属性

属性 类型 说明
正文 字符串 通知正文
imageUrl 字符串 要在通知中显示的图片的网址。
title 字符串 通知的标题。

Notification.body

通知正文

签名

body?: string;

通知.imageUrl

要在通知中显示的图片的网址。

签名

imageUrl?: string;

通知标题

通知的标题。

签名

title?: string;