@semo/core
    Preparing search index...

    Variable logJsonConst

    logJson: (message: string | unknown[] | Record<string, unknown>) => void = jsonLog

    Type declaration

      • (message: string | unknown[] | Record<string, unknown>): void
      • Logs a message to the console. If the message is an array or an object, it will be stringified and colorized before being logged. Otherwise, the message will be logged as is.

        Parameters

        • message: string | unknown[] | Record<string, unknown>

          The message to log. It can be an array, an object, or a string.

        Returns void