All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.olvind.mui.std.KeyframeAnimationOptions.scala Maven / Gradle / Ivy

package com.olvind.mui.std

import org.scalablytyped.runtime.StObject
import scala.scalajs.js
import scala.scalajs.js.annotation.{JSGlobalScope, JSGlobal, JSImport, JSName, JSBracketAccess}

trait KeyframeAnimationOptions
  extends StObject
     with KeyframeEffectOptions {
  
  /* standard dom */
  var id: js.UndefOr[java.lang.String] = js.undefined
}
object KeyframeAnimationOptions {
  
  inline def apply(): KeyframeAnimationOptions = {
    val __obj = js.Dynamic.literal()
    __obj.asInstanceOf[KeyframeAnimationOptions]
  }
  
  @scala.inline
  implicit open class MutableBuilder[Self <: KeyframeAnimationOptions] (val x: Self) extends AnyVal {
    
    inline def setId(value: java.lang.String): Self = StObject.set(x, "id", value.asInstanceOf[js.Any])
    
    inline def setIdUndefined: Self = StObject.set(x, "id", js.undefined)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy