@viewar/call
Version:
ViewAR Call
12 lines (10 loc) • 329 B
JavaScript
export const CALL_STATUS_ACTIVE = Symbol('active');
export const CALL_STATUS_INCOMING = Symbol('incoming');
export const CALL_STATUS_CONNECTING = Symbol('connecting');
export const CALL_STATUS_NONE = Symbol('none');
export default {
CALL_STATUS_ACTIVE,
CALL_STATUS_INCOMING,
CALL_STATUS_CONNECTING,
CALL_STATUS_NONE,
};