UNPKG

@hunteroi/discord-server-generator

Version:

A framework to generate Discord guild categories, channels and roles, built with DiscordJS

15 lines (14 loc) 539 B
import { Client, type ClientOptions } from "discord.js"; import { ServerGeneratorManager } from "./ServerGeneratorManager.js"; import type { ServerGeneratorOptions } from "./types/index.js"; /** * A Discord client with an embedded {@link ServerGeneratorManager}. * * @export * @class ServerGeneratorClient * @extends {Client} */ export declare class ServerGeneratorClient extends Client { readonly serverGeneratorManager: ServerGeneratorManager; constructor(options: ClientOptions, managerOptions: ServerGeneratorOptions); }