1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-03 00:15:27 +00:00
tgbotapi/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/MessageEntity/textsources/HashTagTextSource.kt

21 lines
1.0 KiB
Kotlin
Raw Normal View History

2020-10-04 11:06:30 +00:00
package dev.inmo.tgbotapi.types.MessageEntity.textsources
2020-11-06 12:52:59 +00:00
/**
* @see hashtag
*/
2022-05-01 14:36:07 +00:00
@Deprecated("Replaced", ReplaceWith("HashTagTextSource", "dev.inmo.tgbotapi.types.message.textsources.HashTagTextSource"))
typealias HashTagTextSource = dev.inmo.tgbotapi.types.message.textsources.HashTagTextSource
2020-11-06 12:52:59 +00:00
@Suppress("NOTHING_TO_INLINE", "EXPERIMENTAL_API_USAGE")
2022-05-01 14:36:07 +00:00
@Deprecated("Replaced", ReplaceWith("hashtag", "dev.inmo.tgbotapi.types.message.textsources.hashtag"))
inline fun hashtag(parts: TextSourcesList) = dev.inmo.tgbotapi.types.message.textsources.hashtag(parts)
2020-11-06 12:52:59 +00:00
@Suppress("NOTHING_TO_INLINE")
2022-05-01 14:36:07 +00:00
@Deprecated("Replaced", ReplaceWith("hashtag", "dev.inmo.tgbotapi.types.message.textsources.hashtag"))
inline fun hashtag(vararg parts: TextSource) = dev.inmo.tgbotapi.types.message.textsources.hashtag(*parts)
2020-11-06 12:52:59 +00:00
/**
* Without sharp (#)
*/
@Suppress("NOTHING_TO_INLINE")
2022-05-01 14:36:07 +00:00
@Deprecated("Replaced", ReplaceWith("hashtag", "dev.inmo.tgbotapi.types.message.textsources.hashtag"))
inline fun hashtag(hashtag: String) = dev.inmo.tgbotapi.types.message.textsources.hashtag(hashtag)