package com.margelo.nitro.rive object EventPropertiesOutputExtensions { fun boolean(value: Boolean): EventPropertiesOutput = EventPropertiesOutput.First(value) fun string(value: String): EventPropertiesOutput = EventPropertiesOutput.Second(value) fun number(value: Double): EventPropertiesOutput = EventPropertiesOutput.Third(value) }