当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript xstream.from函数代码示例

本文整理汇总了TypeScript中xstream.from函数的典型用法代码示例。如果您正苦于以下问题:TypeScript from函数的具体用法?TypeScript from怎么用?TypeScript from使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了from函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1:

 let main = () => ({
   bot: xs.from([
     xs.of(forwardMessage(
       { chat_id: GROUP_ID, from_chat_id: GROUP_ID, message_id: 4515 },
       {}))
   ])
 })
开发者ID:goodmind,项目名称:cycle-telegram,代码行数:7,代码来源:xstream.ts

示例2: matchStream

 let main = (s: Sources) => ({
   bot: xs.from([
     matchStream(s.bot.events('message').filter(entityIs('bot_command')), plugins, s)
       .map((x: Sources) => x.bot)
       .flatten()
   ])
 })
开发者ID:goodmind,项目名称:cycle-telegram,代码行数:7,代码来源:xstream.ts

示例3: editMessageReplyMarkup

 let main = ({ bot }: Sources) => ({
   bot: xs.from([
     bot.events('message')
       .debug(() => bot.dispose())
       .map(reply({
         text: 'Message with reply_markup',
         reply_markup: {
           inline_keyboard: [
             [{ text: '1', callback_data: 'one' }],
             [{ text: '2', callback_data: 'two' }],
             [{ text: '3', callback_data: 'three' }]
           ]
         }
       })),
     bot.responses
       .take(1)
       .map(message => editMessageReplyMarkup(
         {
           reply_markup: {
             inline_keyboard: [
               [{ text: '4', callback_data: 'four' }],
               [{ text: '5', callback_data: 'five' }],
               [{ text: '6', callback_data: 'six' }]
             ]
           }
         },
         { message }))
   ])
 })
开发者ID:goodmind,项目名称:cycle-telegram,代码行数:29,代码来源:xstream.ts


注:本文中的xstream.from函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。