UNPKG

matterbridge

Version:
59 lines 2.11 kB
/** * This file contains functions to set and get global instances of Matterbridge, Frontend, and Logger. * * @file globalMatterbridge.ts * @author Luca Liguori * @created 2025-06-01 * @version 1.0.0 * @license Apache-2.0 * * Copyright 2025, 2026, 2027 Luca Liguori. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import type { AnsiLogger } from 'node-ansi-logger'; import type { Matterbridge } from './matterbridge.js'; import type { Frontend } from './frontend.js'; declare global { var __matterbridge__: Matterbridge | undefined; var __frontend__: Frontend | undefined; var __log__: AnsiLogger | undefined; } /** * Store the Matterbridge instance globally for later retrieval. * * @param {Matterbridge} matterbridge An initialized Matterbridge instance */ export declare function setGlobalMatterbridge(matterbridge: Matterbridge): void; /** * Retrieve the globally stored Matterbridge instance. * * @returns {Matterbridge} The Matterbridge instance. * @throws {Error} If the Matterbridge instance is not set. */ export declare function getGlobalMatterbridge(): Matterbridge; /** * Retrieve the globally stored Frontend instance. * * @returns {Frontend} The Frontend instance. * @throws {Error} If the Frontend instance is not set. */ export declare function getGlobalFrontend(): Frontend; /** * Retrieve the globally stored Logger instance. * * @returns {AnsiLogger} The AnsiLogger instance. * @throws {Error} If the Logger instance is not set. */ export declare function getGlobalLog(): AnsiLogger; //# sourceMappingURL=globalMatterbridge.d.ts.map