/** * * Agora Real Time Engagement * Created by Wei Hu in 2022-04. * Copyright (c) 2022 Agora IO. All rights reserved. * */ export interface RteLoc { uri: string; graph_id: string; extension_group: string; extension: string; } export const PUBLISH_EVENT_NAME = 'publish_event'; /** * The user data sent to the UI widget by 'sendPublishEvent()'. */ export interface RteUiEventData { type: string; // The 'detail' must be object if the ui message is passed by reference. detail: any; [extra: string]: any; }