function printArgs()

in src/printers.ts [305:330]


function printArgs(args, indentation = '') {
    if (args.length === 0) {
        return '';
    }

    // If every arg does not have a description, print them on one line.
    if (args.every((arg) => !arg.description)) {
        return '(' + args.map(printInputValue).join(', ') + ')';
    }

    return (
        '(\n' +
        args
            .map(
                (arg, i) =>
                    printDescription(arg, '  ' + indentation, !i) +
                    '  ' +
                    indentation +
                    printInputValue(arg),
            )
            .join('\n') +
        '\n' +
        indentation +
        ')'
    );
}