goog.module('intersectiontype.Serial$impl');

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

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

exports = Serial;

//# sourceMappingURL=Serial.js.map
