Interface FormatParameters

Format parameters for the variables

interface FormatParameters {
    showValue?: ShowValueType;
}

Properties

Properties

showValue?: ShowValueType

Whether to show the value in the output, defaults to undefined

  • undefined: hide the value
  • true: show the actual value
  • false: show the value with asterisks
  • 'prefix': show only prefix of value (1-3 characters based on length of the value)
  • 'suffix': show only suffix of value (1-3 characters based on length of the value)
  • 'both': show both prefix and suffix of value (1-2 characters on suffix and prefix based on length of the value)
false