2025-10-23 12:32:01 +05:30
|
|
|
/*
|
|
|
|
|
Copyright 2025 New Vector Ltd.
|
|
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import type { Room } from "../models/Room";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Provides some basic functionality of the Room List Store from element-web.
|
|
|
|
|
* @public
|
|
|
|
|
*/
|
|
|
|
|
export interface RoomListStoreApi {
|
|
|
|
|
/**
|
|
|
|
|
* Get a flat list of sorted room from the RLS.
|
|
|
|
|
*/
|
|
|
|
|
getRooms(): Room[];
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns a promise that resolves when RLS is ready.
|
|
|
|
|
*/
|
|
|
|
|
waitForReady(): Promise<void>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Provides access to certain stores from element-web.
|
|
|
|
|
* @public
|
|
|
|
|
*/
|
|
|
|
|
export interface StoresApi {
|
|
|
|
|
/**
|
|
|
|
|
* Use this to access limited functionality of the RLS from element-web.
|
|
|
|
|
*/
|
2025-10-24 00:28:54 +05:30
|
|
|
roomListStore: RoomListStoreApi;
|
2025-10-23 12:32:01 +05:30
|
|
|
}
|