7766ae92d7
Without the fix the return type would be `string` in cases where it should be `ReactNode`
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
/*
|
|
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 { ModuleLoader, ModuleIncompatibleError } from "./loader";
|
|
export type { Api, Module, ModuleFactory } from "./api";
|
|
export type { Config, ConfigApi } from "./api/config";
|
|
export type {
|
|
I18nApi,
|
|
Variables,
|
|
StringVariables,
|
|
RichVariables,
|
|
Translations,
|
|
SubstitutionValue,
|
|
Tags,
|
|
} from "./api/i18n";
|
|
export type * from "./models/event";
|
|
export type * from "./models/Room";
|
|
export type * from "./api/composer";
|
|
export type * from "./api/custom-components";
|
|
export type * from "./api/extras";
|
|
export type * from "./api/legacy-modules";
|
|
export type * from "./api/legacy-customisations";
|
|
export type * from "./api/auth";
|
|
export type * from "./api/dialog";
|
|
export type * from "./api/profile";
|
|
export type * from "./api/navigation";
|
|
export type * from "./api/builtins";
|
|
export type * from "./api/stores";
|
|
export type * from "./api/client";
|
|
export type * from "./api/widget-lifecycle";
|
|
export type * from "./api/widget";
|
|
export type * from "./api/customisations";
|
|
export { UIComponent } from "./api/customisations";
|
|
export * from "./api/watchable";
|
|
export type * from "./utils";
|