make SDK exports explicit

This commit is contained in:
Bruno Windels 2022-03-01 15:41:44 +01:00
parent 4a4856a29e
commit 4c50dbf7ec
1 changed files with 9 additions and 1 deletions

View File

@ -37,4 +37,12 @@ export {AvatarView} from "./platform/web/ui/AvatarView.js";
export {RoomType} from "./matrix/room/common";
export {EventEmitter} from "./utils/EventEmitter";
export {Disposables} from "./utils/Disposables";
export * from "./observable/";
// these should eventually be moved to another library
export {
ObservableArray,
SortedArray,
MappedList,
AsyncMappedList,
ConcatList,
ObservableMap
} from "./observable/index";