goog.module('jsbridgeaccidentaloverride.MyInterface$impl');

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

/**
 * @interface
 */
class MyInterface {
 /** @abstract @nodts @return {number} */
 m_foo__int__int(/** number */ a) {}
 /** @abstract @nodts @return {number} */
 m_bar__int__int(/** number */ a) {}
 /** @nodts */
 static $clinit() {
  MyInterface.$clinit = () =>{};
  MyInterface.$loadModules();
 }
 
 static $markImplementor(/** Function */ ctor) {
  ctor.prototype.$implements__jsbridgeaccidentaloverride_MyInterface = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__jsbridgeaccidentaloverride_MyInterface;
 }
 
 /** @nodts */
 static $loadModules() {}
}
MyInterface.$markImplementor(/**@type {Function}*/ (MyInterface));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (MyInterface), 'jsbridgeaccidentaloverride.MyInterface');

exports = MyInterface;

//# sourceMappingURL=MyInterface.js.map
