goog.module('markimplementornativetypes.RegularInterface$impl');

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

/**
 * @interface
 */
class RegularInterface {
 /** @nodts */
 static $clinit() {
  RegularInterface.$clinit = () =>{};
  RegularInterface.$loadModules();
 }
 
 static $markImplementor(/** Function */ ctor) {
  ctor.prototype.$implements__markimplementornativetypes_RegularInterface = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__markimplementornativetypes_RegularInterface;
 }
 
 /** @nodts */
 static $loadModules() {}
}
RegularInterface.$markImplementor(/**@type {Function}*/ (RegularInterface));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (RegularInterface), 'markimplementornativetypes.RegularInterface');

exports = RegularInterface;

//# sourceMappingURL=RegularInterface.js.map
