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

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

/**
 * @interface
 */
class SomeInterface {
 /** @abstract @return {?string} */
 getFoo() {}
 /** @abstract @return {number} */
 hashCode() {}
 /** @abstract @return {boolean} */
 equals(/** * */ other) {}
 /** @abstract @return {string} */
 toString() {}
 /** @nodts */
 static $clinit() {
  SomeInterface.$clinit = () =>{};
  SomeInterface.$loadModules();
 }
 
 static $markImplementor(/** Function */ ctor) {
  ctor.prototype.$implements__autovalue_SomeInterface = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__autovalue_SomeInterface;
 }
 
 /** @nodts */
 static $loadModules() {}
}
SomeInterface.$markImplementor(/**@type {Function}*/ (SomeInterface));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (SomeInterface), 'autovalue.SomeInterface');

exports = SomeInterface;

//# sourceMappingURL=SomeInterface.js.map
