UNPKG

@ncp-web/portal-communication

Version:

portal 通讯工具

16 lines (15 loc) 327 B
interface BaseContent { appId?: string; type: string; } export interface MessageContent extends BaseContent { message: string; } export interface ObjectContent extends BaseContent { data: any; } export interface ActionMessage extends BaseContent { data: any; action: string; } export {};