Skip to content

Commit

Permalink
Web Types 0.0.174 [generated]
Browse files Browse the repository at this point in the history
  • Loading branch information
turansky committed Oct 20, 2024
1 parent f32e1be commit 27dbaa3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
7 changes: 7 additions & 0 deletions kotlin-browser/src/jsMain/generated/web/errors/ErrorEvent.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ open external class ErrorEvent(
override val type: EventType<ErrorEvent>,
init: ErrorEventInit = definedExternally,
) : Event {
/**
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/colno)
*/
val colno: Int

/**
Expand All @@ -32,6 +35,10 @@ open external class ErrorEvent(
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename)
*/
val filename: String

/**
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/lineno)
*/
val lineno: Int

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ sealed external interface WebGLRenderingContextBase {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGLRenderingContext/drawingBufferWidth)
*/
val drawingBufferWidth: GLsizei

/**
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebGL2RenderingContext/unpackColorSpace)
*/
var unpackColorSpace: PredefinedColorSpace

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ protected constructor() :

/**
* Used to override the encoding (formEnctype attribute) specified on the form element.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/formEnctype)
*/
var formEnctype: FormEncType

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ protected constructor() :

/**
* Used to override the encoding (formEnctype attribute) specified on the form element.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/formEnctype)
*/
var formEnctype: FormEncType

Expand Down

0 comments on commit 27dbaa3

Please sign in to comment.