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

20 lines
563 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.
*/
export interface RoomViewProps {
roomId?: string;
}
/**
* Exposes components that are part of Element Web to allow modules to render them
* as part of their custom components (because they can't import the components from
* Element Web since it would cause a dependency cycle)
*/
export interface BuiltinsApi {
getRoomViewComponent(): React.ComponentType<RoomViewProps>;
}