tgbotapi/tgbotapi.webapps/src/jsMain/kotlin/dev/inmo/tgbotapi/webapps/EventHandler.kt

11 lines
476 B
Kotlin
Raw Normal View History

2022-04-18 11:05:28 +00:00
package dev.inmo.tgbotapi.webapps
2022-06-21 10:27:53 +00:00
import dev.inmo.tgbotapi.webapps.invoice.InvoiceClosedInfo
2022-04-18 11:05:28 +00:00
typealias EventHandler = WebApp.() -> Unit
2022-04-19 09:14:59 +00:00
typealias ViewportChangedEventHandler = WebApp.(ViewportChangedData) -> Unit
2022-06-21 10:27:53 +00:00
typealias InvoiceClosedEventHandler = WebApp.(InvoiceClosedInfo) -> Unit
typealias PopupClosedEventHandler = WebApp.(String?) -> Unit
2022-12-30 15:48:50 +00:00
typealias QRTextReceivedEventHandler = WebApp.(String) -> Boolean
typealias TextReceivedEventHandler = WebApp.(String) -> Unit