Interface IToStringOptions

interface IToStringOptions {
    maxColumns?: number;
    maxNumSize?: number;
    maxRows?: number;
    padMinus?: boolean | "auto";
}

Properties

maxColumns?: number

Maximum number of printed columns.

10

maxNumSize?: number

Maximum size (number of characters) of printed numbers.

8

maxRows?: number

Maximum number of printed rows.

15

padMinus?: boolean | "auto"

Place minus signs in their own column.

'auto'