goog.module('bridgemethods.SomeOtherFooInterface$impl');

const $Util = goog.require('nativebootstrap.Util$impl');

/**
 * @interface
 * @template T
 */
class SomeOtherFooInterface {
 /** @abstract @nodts */
 m_foo__java_lang_Object__java_lang_Double__void(/** T */ t, /** ?number */ s) {}
 /** @nodts */
 static $clinit() {
  SomeOtherFooInterface.$clinit = () =>{};
  SomeOtherFooInterface.$loadModules();
 }
 
 static $markImplementor(/** Function */ ctor) {
  ctor.prototype.$implements__bridgemethods_SomeOtherFooInterface = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__bridgemethods_SomeOtherFooInterface;
 }
 
 /** @nodts */
 static $loadModules() {}
}
SomeOtherFooInterface.$markImplementor(/**@type {Function}*/ (SomeOtherFooInterface));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (SomeOtherFooInterface), 'bridgemethods.SomeOtherFooInterface');

exports = SomeOtherFooInterface;

//# sourceMappingURL=SomeOtherFooInterface.js.map
