Files
ThreadNet-Web/packages/element-web-module-api/src/api/builtins.ts
T

33 lines
943 B
TypeScript
Raw Normal View History

2025-09-24 10:58:41 +01:00
/*
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.
*/
2025-09-24 16:07:31 +01:00
/**
* The props that must be passed to a RoomView component.
* @alpha Subject to change.
*/
2025-09-24 10:58:41 +01:00
export interface RoomViewProps {
roomId?: string;
}
/**
2025-10-17 11:56:48 +01:00
* Exposes components and classes that are part of Element Web to allow modules to
* render the components as part of their custom components or use the classes
* (because they can't import the components from Element Web since it would cause
* a dependency cycle)
2025-09-24 16:07:31 +01:00
* @alpha
2025-09-24 10:58:41 +01:00
*/
export interface BuiltinsApi {
2025-10-17 12:10:07 +01:00
/**
* Returns the RoomView component used by Element Web to render a room such that
* modules can render it as part of their own custom room views.
*
* @alpha
* @returns The RoomView component.
*/
2025-09-24 10:58:41 +01:00
getRoomViewComponent(): React.ComponentType<RoomViewProps>;
}