oopscord.js
    Preparing search index...

    Interface Logger

    The logger interface used for logging application events and errors. You can implement this interface to create a custom logger or use the default console logger.

    interface Logger {
        error(message: string): void;
        info(message: string): void;
        warn(message: string): void;
    }
    Index

    Methods

    Methods