// Generated by scripts/generate.mjs from bindings/api.mjs. Do not edit.

///|
#external
pub type GLTFLoaderRegistration

///|
pub extern "js" fn GLTFLoaderRegistration::active(
  self : GLTFLoaderRegistration,
) -> Bool =
  #| (self) => self.active

///|
pub extern "js" fn GLTFLoaderRegistration::unregister(
  self : GLTFLoaderRegistration,
) -> Unit =
  #| (self) => { if(self.active){self.owner.unregister(self.callback);self.active=false;} }