mirror of
				https://github.com/InsanusMokrassar/TelegramBotAPI.git
				synced 2025-11-03 21:50:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			797 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			797 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
// Part for callback typealias
 | 
						|
 | 
						|
typealias {{$callback_typealias_name}} = WebApp.({{$callback_args}}) -> Unit
 | 
						|
 | 
						|
// Part for outside of WebApp
 | 
						|
 | 
						|
/**
 | 
						|
 * @return The callback which should be used in case you want to turn off events handling
 | 
						|
 */
 | 
						|
fun WebApp.onEvent(type: EventType.{{$event_name_uppercase}}, eventHandler: {{$callback_typealias_name}}) = { {{$callback_args_definitions}} ->
 | 
						|
    eventHandler(js("this").unsafeCast<WebApp>(), {{$callback_args_names}})
 | 
						|
}.also {
 | 
						|
    on{{$event_name_uppercase}}(
 | 
						|
        type.typeName,
 | 
						|
        callback = it
 | 
						|
    )
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
 * @return The callback which should be used in case you want to turn off events handling
 | 
						|
 */
 | 
						|
fun WebApp.on{{$event_name_uppercase}}(eventHandler: {{$callback_typealias_name}}) = onEvent(EventType.{{$event_name_uppercase}}, eventHandler)
 |