Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
| 12345678910111213141516 |
- /**
- * The errors for the connection.
- */
-
- /**
- * Indicates that a connection error occurred when trying to join a conference.
- */
- export const CONNECTION_ERROR = "connection.connectionError";
- /**
- * Not specified errors.
- */
- export const OTHER_ERROR = "connection.otherError";
- /**
- * Indicates that a password is required in order to join the conference.
- */
- export const PASSWORD_REQUIRED = "connection.passwordRequired";
|