9 lines
303 B
TypeScript
9 lines
303 B
TypeScript
interface OfflinePushInfo {
|
|
title:string; // 推送标题
|
|
desc:string; // 推送描述
|
|
iOSPushSound:string; // ios 推送声音文件的名称
|
|
iOSBadgeCount:boolean; // ios 是否展示角标
|
|
operatorUserID:string; // 操作员用户 ID
|
|
ex:string; // 扩展内容
|
|
}
|
|
export default OfflinePushInfo; |