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

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

let Number = goog.forwardDeclare('java.lang.Number$impl');

/**
 * @interface
 * @template T, S
 */
class SomeInterface {
 /** @abstract @nodts */
 m_foo__java_lang_Object__java_lang_Object__void(/** T */ t, /** S */ s) {}
 /** @abstract @nodts */
 m_foo__java_lang_Object__java_lang_Number__void(/** T */ t, /** (Number|number) */ n) {}
 /** @nodts */
 static $clinit() {
  SomeInterface.$clinit = () =>{};
  SomeInterface.$loadModules();
 }
 
 static $markImplementor(/** Function */ ctor) {
  ctor.prototype.$implements__bridgemethods_SomeInterface = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__bridgemethods_SomeInterface;
 }
 
 /** @nodts */
 static $loadModules() {}
}
SomeInterface.$markImplementor(/**@type {Function}*/ (SomeInterface));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (SomeInterface), 'bridgemethods.SomeInterface');

exports = SomeInterface;

//# sourceMappingURL=SomeInterface.js.map
