UNPKG

teletype-client-modified

Version:

I have modified the library developed by Atom to make it compatible with non-browser facility. I am using it only for experimentation purposes. I will remove this package post my experiment and raise a PR at Atom to finally merge this package so that this

20 lines (18 loc) 1.28 kB
const TeletypeClient = require('./lib/teletype-client') const FollowState = require('./lib/follow-state') const Errors = require('./lib/errors') const RestGateway = require('./lib/rest-gateway') const Portal = require('./lib/portal') const PusherPubSubGateway = require('./lib/pusher-pub-sub-gateway') const BufferProxy = require('./lib/buffer-proxy') const EditorProxy = require('./lib/editor-proxy') const EditorProxyMetadata = require('./lib/editor-proxy-metadata') const PeerConnection = require('./lib/peer-connection') const PeerPool = require('./lib/peer-pool') const Router = require('./lib/router') const StarOverlayNetwork = require('./lib/star-overlay-network') const PubSubSignalingProvider = require('./lib/pusher-pub-sub-gateway') const NullPortalDelegate = require('./lib/null-portal-delegate') const NullEditorProxyDelegate = require('./lib/null-editor-proxy-delegate') const convertToProtobufCompatibleBuffer = require('./lib/convert-to-protobuf-compatible-buffer') module.exports = {TeletypeClient, FollowState, Errors, RestGateway, NullEditorProxyDelegate, convertToProtobufCompatibleBuffer, NullPortalDelegate,PubSubSignalingProvider, PusherPubSubGateway, Portal, BufferProxy, EditorProxy,EditorProxyMetadata, PeerConnection, PeerPool, Router, StarOverlayNetwork}