/** * * Agora Real Time Engagement * Created by Liu Loulou in 2022-08. * Copyright (c) 2022 Agora IO. All rights reserved. * */ import { getExportedRte as GetExportedRteFunc } from './addon/export_rte'; import { RteLoc as RteLocAlias, RteUiEventData as RteUiEventDataAlias, } from './common/common'; import { Cmd as CmdAlias } from './msg/cmd/cmd'; import { RTE as RTEAlias } from './rte/rte'; import { Value as ValueAlias } from './value/value'; declare namespace RteRuntime { const version: string; const getExportedRte: typeof GetExportedRteFunc; class Cmd extends CmdAlias {} class Value extends ValueAlias {} class RTE extends RTEAlias {} type RteLoc = RteLocAlias; type RteUiEventData = RteUiEventDataAlias; } export default RteRuntime; export as namespace RteRuntime;