/** * * Agora Real Time Engagement * Created by Wei Hu in 2022-02. * Copyright (c) 2022 Agora IO. All rights reserved. * */ import { RteLoc } from '../common/common'; import { Value } from '../value/value'; interface MsgValue { readonly src: RteLoc; readonly dest: RteLoc[]; setDest(loc: RteLoc): void; } export declare class Msg implements MsgValue { getSrcExtension(): string; setDest(loc: RteLoc): void; setProperty(name: string, value: Value): void; getProperty(name: string): Value; get src(): RteLoc; get dest(): RteLoc[]; } export {};