webcomponent: change enums from const to regular export for WebComponentCommand and WebComponentEvent

This commit is contained in:
Carlos Santos 2025-05-09 13:00:11 +02:00
parent 7d0059feac
commit cde60eca82
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/** /**
* All available commands that can be sent to the WebComponent. * All available commands that can be sent to the WebComponent.
*/ */
export const enum WebComponentCommand { export enum WebComponentCommand {
/** /**
* Initializes the WebComponent with the given configuration. * Initializes the WebComponent with the given configuration.
* @private * @private

View File

@ -2,7 +2,7 @@
* All available events that can be emitted by the WebComponent. * All available events that can be emitted by the WebComponent.
* @category Communication * @category Communication
*/ */
export const enum WebComponentEvent { export enum WebComponentEvent {
/** /**
* Event emitted when the local participant joins the room. * Event emitted when the local participant joins the room.
*/ */