bidiMapper.js 1.6 KB

12345678910111213141516171819202122232425262728293031
  1. "use strict";
  2. /**
  3. * Copyright 2022 Google LLC.
  4. * Copyright (c) Microsoft Corporation.
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. Object.defineProperty(exports, "__esModule", { value: true });
  19. exports.OutgoingBidiMessage = exports.EventEmitter = exports.BidiServer = void 0;
  20. /**
  21. * @fileoverview The entry point to the BiDi Mapper namespace.
  22. * Other modules should only access exports defined in this file.
  23. * XXX: Add ESlint rule for this (https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-restricted-paths.md)
  24. */
  25. var BidiServer_js_1 = require("./BidiServer.js");
  26. Object.defineProperty(exports, "BidiServer", { enumerable: true, get: function () { return BidiServer_js_1.BidiServer; } });
  27. var EventEmitter_js_1 = require("../utils/EventEmitter.js");
  28. Object.defineProperty(exports, "EventEmitter", { enumerable: true, get: function () { return EventEmitter_js_1.EventEmitter; } });
  29. var OutgoingBidiMessage_js_1 = require("./OutgoingBidiMessage.js");
  30. Object.defineProperty(exports, "OutgoingBidiMessage", { enumerable: true, get: function () { return OutgoingBidiMessage_js_1.OutgoingBidiMessage; } });
  31. //# sourceMappingURL=bidiMapper.js.map