UNPKG

@alicloud/console-base-messenger-tutor

Version:
15 lines (14 loc) 403 B
import { broadcastByApp } from '@alicloud/console-base-messenger-base'; import { MESSAGE_TYPE_TUTOR_REGISTER } from '../const'; /** * 注册教程 * * @deprecated 不要再使用,用 Viper 上的微教程管理进行发布 */ export default function registerTutor(id, contents, title) { broadcastByApp(MESSAGE_TYPE_TUTOR_REGISTER, { id: id, title: title, contents: contents }); }