Sparky
    Preparing search index...

    Interface for a logger.

    interface ILogger {
        error: (...args: string[]) => void;
        info: (...args: string[]) => void;
        warn: (...args: string[]) => void;
    }
    Index

    Properties

    Properties

    error: (...args: string[]) => void

    Log an error message.

    info: (...args: string[]) => void

    Log an informational message.

    warn: (...args: string[]) => void

    Log a warning message.