// Do not edit. This file is generated.
// MoonBit type: PopStateEvent
// Specifications: html.idl
///|
/// [PopStateEvent](https://developer.mozilla.org/en-US/docs/Web/API/PopStateEvent)
#external
pub type PopStateEvent
///|
pub impl TJsValue for PopStateEvent with to_js(self : PopStateEvent) -> JsValue = "%identity"
///|
pub impl FromJsAny for PopStateEvent with from_js_any(value : JsAny) -> PopStateEvent = "%identity"
///|
/// Unchecked downcast — no runtime type check is performed.
/// Prefer `try_into()` for checked downcasts.
#deprecated("Use unsafe_into or try_into instead")
pub fn[T : TPopStateEvent] PopStateEvent::into(self : PopStateEvent) -> T = "%identity"
///|
/// Unchecked downcast — no runtime type check is performed.
/// WARNING: If the underlying JS value is not of type T, this will silently
/// produce a value with incorrect type, leading to undefined behavior.
pub fn[T : TPopStateEvent] PopStateEvent::unsafe_into(
self : PopStateEvent,
) -> T = "%identity"
///|
pub impl HasConstructor for PopStateEvent with constructor_name() {
"PopStateEvent"
}
///|
/// Checked downcast — returns None if the JS value is not an instance of T.
pub fn[T : TPopStateEvent + HasConstructor] PopStateEvent::try_into(
self : PopStateEvent,
) -> T? {
if js_instanceof(TJsValue::to_js(self), T::constructor_name()) {
Some(self.unsafe_into())
} else {
None
}
}
///|
pub impl TPopStateEvent for PopStateEvent
///|
pub impl TEvent for PopStateEvent
///|
pub fn PopStateEvent::new(
type_ : String,
event_init_dict? : PopStateEventInit,
) -> PopStateEvent {
pop_state_event_new_ffi(TJsValue::to_js(type_), opt_to_js(event_init_dict))
}
///|
/// [PopStateEvent](https://developer.mozilla.org/en-US/docs/Web/API/PopStateEvent) interface.
pub trait TPopStateEvent: TEvent {
state(self : Self) -> JsValue = _
has_ua_visual_transition(self : Self) -> Bool = _
}
///|
/// [PopStateEvent.state](https://developer.mozilla.org/en-US/docs/Web/API/PopStateEvent/state)
impl TPopStateEvent with state(self : Self) -> JsValue {
pop_state_event_state_ffi(TJsValue::to_js(self))
}
///|
/// [PopStateEvent.hasUAVisualTransition](https://developer.mozilla.org/en-US/docs/Web/API/PopStateEvent/hasUAVisualTransition)
impl TPopStateEvent with has_ua_visual_transition(self : Self) -> Bool {
pop_state_event_has_ua_visual_transition_ffi(TJsValue::to_js(self))
}
///|
#cfg(target="js")
extern "js" fn pop_state_event_new_ffi(
type_ : JsValue,
event_init_dict : JsValue,
) -> PopStateEvent = "(type_, event_init_dict) => new PopStateEvent(type_, event_init_dict)"
///|
#cfg(target="js")
extern "js" fn pop_state_event_state_ffi_js(obj : JsValue) -> JsValue = "(obj) => obj.state"
///|
#cfg(target="js")
fn pop_state_event_state_ffi(obj : JsValue) -> JsValue {
pop_state_event_state_ffi_js(obj).unsafe_cast()
}
///|
#cfg(target="js")
extern "js" fn pop_state_event_has_ua_visual_transition_ffi_js(
obj : JsValue,
) -> JsValue = "(obj) => obj.hasUAVisualTransition"
///|
#cfg(target="js")
fn pop_state_event_has_ua_visual_transition_ffi(obj : JsValue) -> Bool {
pop_state_event_has_ua_visual_transition_ffi_js(obj).unsafe_cast()
}
///|
#cfg(target="wasm-gc")
fn pop_state_event_new_ffi(
type_ : JsValue,
event_init_dict : JsValue,
) -> PopStateEvent = "webapi_PopStateEvent" "new"
///|
#cfg(target="wasm-gc")
fn pop_state_event_state_ffi(obj : JsValue) -> JsValue = "webapi_PopStateEvent" "get_state"
///|
#cfg(target="wasm-gc")
fn pop_state_event_has_ua_visual_transition_ffi(obj : JsValue) -> Bool = "webapi_PopStateEvent" "get_hasUAVisualTransition"