You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

StreamEventTypes.js 332B

12345678910111213
  1. var StreamEventTypes = {
  2. EVENT_TYPE_LOCAL_CREATED: "stream.local_created",
  3. EVENT_TYPE_LOCAL_CHANGED: "stream.local_changed",
  4. EVENT_TYPE_LOCAL_ENDED: "stream.local_ended",
  5. EVENT_TYPE_REMOTE_CREATED: "stream.remote_created",
  6. EVENT_TYPE_REMOTE_ENDED: "stream.remote_ended"
  7. };
  8. module.exports = StreamEventTypes;