Utility TypeScript @ 2.0.0-beta.5
    Preparing search index...

    Interface TimestampMethods

    2.0.0-beta.3

    interface TimestampMethods {
        debug: (
            msg: string | string[] | BulkMsgs,
            args?: RecursivePartial<Partial<MessageMaker.MsgArgs> & TimestampedArgs>,
        ) => void;
        error: (
            msg: string | string[] | BulkMsgs,
            args?: RecursivePartial<Partial<MessageMaker.MsgArgs> & TimestampedArgs>,
        ) => void;
        log: (
            msg: string | string[] | BulkMsgs,
            args?: RecursivePartial<Partial<MessageMaker.MsgArgs> & TimestampedArgs>,
        ) => void;
        verbose: (
            msg: string | string[] | BulkMsgs,
            args?: RecursivePartial<Partial<MessageMaker.MsgArgs> & TimestampedArgs>,
        ) => void;
        warn: (
            msg: string | string[] | BulkMsgs,
            args?: RecursivePartial<Partial<MessageMaker.MsgArgs> & TimestampedArgs>,
        ) => void;
    }
    Index

    Properties

    debug: (
        msg: string | string[] | BulkMsgs,
        args?: RecursivePartial<Partial<MessageMaker.MsgArgs> & TimestampedArgs>,
    ) => void

    Alias for NodeConsole.timestamp.log with via: "debug" argument.

    Type Declaration

    MessageMaker.timestamped Used to format the message.

    2.0.0-beta.3

    error: (
        msg: string | string[] | BulkMsgs,
        args?: RecursivePartial<Partial<MessageMaker.MsgArgs> & TimestampedArgs>,
    ) => void

    Alias for NodeConsole.timestamp.log with via: "error" argument.

    Type Declaration

    MessageMaker.timestamped Used to format the message.

    2.0.0-beta.3

    log: (
        msg: string | string[] | BulkMsgs,
        args?: RecursivePartial<Partial<MessageMaker.MsgArgs> & TimestampedArgs>,
    ) => void

    Outputs the given message to the console prefixed with a timestamp.

    Type Declaration

    MessageMaker.timestamped Used to format the message.

    2.0.0-beta.3 — Renamed from NodeConsole.timestampLog to NodeConsole.timestamp.log

    verbose: (
        msg: string | string[] | BulkMsgs,
        args?: RecursivePartial<Partial<MessageMaker.MsgArgs> & TimestampedArgs>,
    ) => void

    Alias for NodeConsole.timestamp.log with via: "info" argument.

    Type Declaration

    MessageMaker.timestamped Used to format the message.

    2.0.0-beta.3

    warn: (
        msg: string | string[] | BulkMsgs,
        args?: RecursivePartial<Partial<MessageMaker.MsgArgs> & TimestampedArgs>,
    ) => void

    Alias for NodeConsole.timestamp.log with via: "warn" argument.

    Type Declaration

    MessageMaker.timestamped Used to format the message.

    2.0.0-beta.3