
jsMain.web.canvas.CanvasGradient.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
package web.canvas
sealed external class CanvasGradient {
/**
* Adds a color stop with the given color to the gradient at the given offset. 0.0 is the offset at one end of the gradient, 1.0 is the offset at the other end.
*
* Throws an "IndexSizeError" DOMException if the offset is out of range. Throws a "SyntaxError" DOMException if the color cannot be parsed.
*/
fun addColorStop(
offset: Number,
color: String,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy