2025-01-27 10:07:35 +00: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-01-28 11:52:33 +00:00
|
|
|
export { ModuleLoader, ModuleIncompatibleError } from "./loader";
|
2025-05-13 10:40:26 +01:00
|
|
|
export type { Api, Module, ModuleFactory } from "./api";
|
|
|
|
|
export type { Config, ConfigApi } from "./api/config";
|
2026-03-26 12:17:59 +01:00
|
|
|
export type { I18nApi, Variables, Translations, SubstitutionValue, Tags } from "./api/i18n";
|
2025-06-17 13:16:01 +01:00
|
|
|
export type * from "./models/event";
|
2025-10-23 12:18:33 +05:30
|
|
|
export type * from "./models/Room";
|
2025-05-16 15:49:07 +01:00
|
|
|
export type * from "./api/custom-components";
|
2025-09-24 10:58:41 +01:00
|
|
|
export type * from "./api/extras";
|
2025-05-13 10:40:26 +01:00
|
|
|
export type * from "./api/legacy-modules";
|
|
|
|
|
export type * from "./api/legacy-customisations";
|
2025-06-23 09:32:26 +01:00
|
|
|
export type * from "./api/auth";
|
|
|
|
|
export type * from "./api/dialog";
|
|
|
|
|
export type * from "./api/profile";
|
|
|
|
|
export type * from "./api/navigation";
|
2025-09-24 10:58:41 +01:00
|
|
|
export type * from "./api/builtins";
|
2025-10-23 12:32:01 +05:30
|
|
|
export type * from "./api/stores";
|
2025-10-23 12:21:22 +05:30
|
|
|
export type * from "./api/client";
|
2026-02-18 13:17:53 +00:00
|
|
|
export type * from "./api/widget-lifecycle";
|
2026-03-06 10:58:00 +00:00
|
|
|
export type * from "./api/widget";
|
2026-03-02 14:50:09 +00:00
|
|
|
export type * from "./api/customisations";
|
|
|
|
|
export { UIComponent } from "./api/customisations";
|
2025-06-24 09:50:02 +01:00
|
|
|
export * from "./api/watchable";
|
2026-02-25 09:33:48 +00:00
|
|
|
export type * from "./utils";
|