Home Reference Source

src/calls/CallDirection.js

import {Enum} from '../utils';

/**
 * Enum containing the possible directions of a call. Possible values:
 * - INCOMING
 * - OUTGOING
 * @type {Enum}
 */
export const CallDirection = new Enum([
	'INCOMING',
	'OUTGOING',
]);