goog.module('jsasync.BaseInterface$impl');

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

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

/**
 * @interface
 */
class BaseInterface {
 /** @abstract @nodts @return {!IThenable<!Integer>} */
 m_asyncCall__jsasync_IThenable() {}
 /** @nodts */
 static $clinit() {
  BaseInterface.$clinit = () =>{};
  BaseInterface.$loadModules();
 }
 
 static $markImplementor(/** Function */ ctor) {
  ctor.prototype.$implements__jsasync_BaseInterface = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__jsasync_BaseInterface;
 }
 
 /** @nodts */
 static $loadModules() {}
}
BaseInterface.$markImplementor(/**@type {Function}*/ (BaseInterface));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (BaseInterface), 'jsasync.BaseInterface');

exports = BaseInterface;

//# sourceMappingURL=BaseInterface.js.map
