UNPKG

sfdx-hardis

Version:

Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards

17 lines (16 loc) 548 B
import { SfCommand } from '@salesforce/sf-plugins-core'; import { AnyJson } from '@salesforce/ts-types'; export default class Flow2Markdown extends SfCommand<any> { static title: string; static description: string; static examples: string[]; static flags: any; static requiresProject: boolean; protected withHistory: boolean; protected withPdf: boolean; protected singleFileMode: boolean; protected inputFiles: any; protected outputFile: any; protected debugMode: boolean; run(): Promise<AnyJson>; }