goog.module('inheritance.GreatParentInterface$impl');

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

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

exports = GreatParentInterface;

//# sourceMappingURL=GreatParentInterface.js.map
