Interface Format

Format Type -- Defines how result and input values will be formatted.

interface Format {
    input: string;
    new_line: boolean;
    result: string;
    sep: string;
    thread: string;
}

Properties

input: string

The format of the input value to be displayed. Defaults to '{name}: {value}'.

new_line: boolean

If true, it will add a new line at the end of the output.

result: string

The format of the result value to be displayed. Defaults to '{name}: {value}'.

sep: string

The separator text between each input and the result. Defaults to ' | '.

thread: string

The format of the thread ID to be displayed. Defaults to '{id}: '.