goog.module('jstypewithdefault.Interface$impl');

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

/**
 * @interface
 */
class Interface {
 /** @abstract */
 defaultMethod() {}
 /** @nodts */
 static m_defaultMethod__$default__jstypewithdefault_Interface__void(/** !Interface */ $thisArg) {
  Interface.$clinit();
 }
 /** @nodts */
 static $clinit() {
  Interface.$clinit = () =>{};
  Interface.$loadModules();
 }
 
 static $markImplementor(/** Function */ ctor) {
  ctor.prototype.$implements__jstypewithdefault_Interface = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__jstypewithdefault_Interface;
 }
 
 /** @nodts */
 static $loadModules() {}
}
Interface.$markImplementor(/**@type {Function}*/ (Interface));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (Interface), 'jstypewithdefault.Interface');

exports = Interface;

//# sourceMappingURL=Interface.js.map
