meocord
Version:
MeoCord is a lightweight and modular framework for building scalable Discord bots using TypeScript and Discord.js. It simplifies bot development with an extensible architecture, TypeScript-first approach, and powerful CLI tools.
33 lines (32 loc) • 1.38 kB
TypeScript
/**
* MeoCord Framework
* Copyright (C) 2025 Ukasyah Rahmatullah Zada
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { type MeoCordConfig } from '../interface/index.js';
/**
* Compiles the TypeScript configuration file (meocord.config.ts) to JavaScript
* and stores it in the temporary directory.
*
* @returns {boolean} Whether the TypeScript compilation was successful.
*/
export declare function compileMeoCordConfig(): Promise<boolean>;
/**
* Loads the MeoCord configuration file (meocord.config.js) from the temporary directory
* and returns it as a JavaScript object.
*
* @returns {MeoCordConfig | undefined} The loaded configuration object, or undefined if loading fails.
*/
export declare function loadMeoCordConfig(): MeoCordConfig | undefined;