13 lines
332 B
JavaScript
13 lines
332 B
JavaScript
var StreamEventTypes = {
|
|
EVENT_TYPE_LOCAL_CREATED: "stream.local_created",
|
|
|
|
EVENT_TYPE_LOCAL_CHANGED: "stream.local_changed",
|
|
|
|
EVENT_TYPE_LOCAL_ENDED: "stream.local_ended",
|
|
|
|
EVENT_TYPE_REMOTE_CREATED: "stream.remote_created",
|
|
|
|
EVENT_TYPE_REMOTE_ENDED: "stream.remote_ended"
|
|
};
|
|
|
|
module.exports = StreamEventTypes; |