UNPKG

vroom-web-sdk-beta

Version:

VROOM SDK (beta) by True Virtual World

42 lines (35 loc) 852 B
/** * @name invalidToken * @constant * @type {string} * @default */ const invalidToken = 'Invalid token. Let\'s see https://developer.truevirtualworld.com/token' /** * @name invalidRoomId * @constant * @type {string} * @default */ const invalidRoomId = 'Room not found. Let\'s see https://developer.truevirtualworld.com/room-id-format' /** * @name invalidDisplayName * @constant * @type {string} * @default */ const invalidDisplayName = 'DisplayName is required. Let\'s see https://developer.truevirtualworld.com/participants' /** * @name connectionError * @constant * @type {string} * @default */ const connectionError = 'connection error. Let\'s see https://developer.truevirtualworld.com/support' const errorMessage = { invalidToken, invalidRoomId, invalidDisplayName, connectionError } export default errorMessage