goog.module('sealedclasses.sealedclassinanotherpackage.SealedInterfaceInAnotherPackage$impl');

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

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

exports = SealedInterfaceInAnotherPackage;

//# sourceMappingURL=SealedInterfaceInAnotherPackage.js.map
