Interface DebugConsole

Represents the debug console.

interface DebugConsole {
    append(value): void;
    appendLine(value): void;
}

Methods

  • Append the given value to the debug console.

    Parameters

    • value: string

      A string, falsy values will not be printed.

    Returns void

  • Append the given value and a line feed character to the debug console.

    Parameters

    • value: string

      A string, falsy values will be printed.

    Returns void