goog.module('libraryinfo.Main.JsTypeInterface$impl');

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

/**
 * @interface
 */
class JsTypeInterface {
 /** @abstract */
 foo() {}
 /** @abstract */
 bar() {}
 /** @nodts */
 static $clinit() {
  JsTypeInterface.$clinit = () =>{};
  JsTypeInterface.$loadModules();
 }
 
 static $markImplementor(/** Function */ ctor) {
  ctor.prototype.$implements__libraryinfo_Main_JsTypeInterface = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__libraryinfo_Main_JsTypeInterface;
 }
 
 /** @nodts */
 static $loadModules() {}
}
JsTypeInterface.$markImplementor(/**@type {Function}*/ (JsTypeInterface));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (JsTypeInterface), 'libraryinfo.Main$JsTypeInterface');

exports = JsTypeInterface;

//# sourceMappingURL=Main$JsTypeInterface.js.map
