Docker / Docker Buildx (push) Has been cancelled
Build Debian package / Build package (release) Has been cancelled
Build and Deploy / prepare (release) Has been cancelled
Deploy release / Deploy to Cloudflare Pages (release) Has been cancelled
Build and Deploy / Trigger Pro pipeline (release) Has been cancelled
Build and Deploy / Windows arm64 (release) Has been cancelled
Build and Deploy / Windows x64 (release) Has been cancelled
Build and Deploy / macOS (release) Has been cancelled
Build and Deploy / Linux amd64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / Linux arm64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / ${{ needs.prepare.outputs.deploy == 'true' && 'Deploy' || 'Deploy (dry-run)' }} (release) Has been cancelled
Build and Deploy / Deploy builds to ESS (release) Has been cancelled
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";
|