@flxbl-io/sfp
Version:
sfp is a CLI tool to help you manage your Salesforce projects in an artifact centric model
10 lines (9 loc) • 395 B
TypeScript
import { Logger } from "@flxbl-io/sfp-logger";
export default class CommandHeaderDisplayer {
private loggerLevel;
private readonly logger;
constructor(logger?: Logger);
headerLine(): CommandHeaderDisplayer;
headerAttribute(attribute: any, value?: any): CommandHeaderDisplayer;
headerAttributeIf(condition: boolean, attribute: any, value?: any): CommandHeaderDisplayer;
}