UX methods for plugins. Automatically suppress console output if outputEnabled is set to false.
import { SfCommand, Ux } from '@salesforce/sf-plugins-core';import { AnyJson } from '@salesforce/ts-types';class MyCommand extends SfCommand<AnyJson> { public async run(): Promise<AnyJson> { const ux = new Ux(!this.jsonEnabled()); }} Copy
import { SfCommand, Ux } from '@salesforce/sf-plugins-core';import { AnyJson } from '@salesforce/ts-types';class MyCommand extends SfCommand<AnyJson> { public async run(): Promise<AnyJson> { const ux = new Ux(!this.jsonEnabled()); }}
Readonly
Log a message to the console. This will be automatically suppressed if output is disabled.
Optional
Message to log. Formatting is supported.
Rest
Args to be used for formatting.
Log a message to stderr. This will be automatically suppressed if output is disabled.
Return a string rendering of a table.
Table properties
string rendering of a table
Display stylized header to the console. This will be automatically suppressed if output is disabled.
header to display
Display stylized JSON to the console. This will be automatically suppressed if output is disabled.
JSON to display
Display stylized object to the console. This will be automatically suppressed if output is disabled.
Object to display
Keys of object to display
Display a table to the console. This will be automatically suppressed if output is disabled.
Display a url to the console. This will be automatically suppressed if output is disabled.
text to display
URL link
Log a warning message to the console. This will be automatically suppressed if output is disabled.
Warning message to log.
UX methods for plugins. Automatically suppress console output if outputEnabled is set to false.
Example