本文整理汇总了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 },
{}))
])
})
示例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()
])
})
示例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 }))
])
})