oopscord.js
    Preparing search index...

    Interface DiscordAppOptions

    Options for configuring the Discord application, including logger and plugins.

    An optional logger object for logging application events and errors. Defaults to the console if not provided.

    An optional array of plugins to extend the functionality of the Discord application. Plugins can be used to add additional features or integrations.

    interface DiscordAppOptions {
        logger?: Logger;
        plugins?: Plugin[];
    }
    Index

    Properties

    Properties

    logger?: Logger
    plugins?: Plugin[]