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

26 lines (25 loc) 804 B
import { SfCommand } from '@salesforce/sf-plugins-core'; import { AnyJson } from '@salesforce/ts-types'; export default class CustomLabelTranslations extends SfCommand<any> { static title: string; static description: string; static examples: string[]; private outputDirPrefix; static flags: any; static requiresProject: boolean; /** * Extract custom label names from LWC JS files */ private extractLabelsFromLwc; /** * Extract original custom label values from CustomLabels.labels-meta.xml */ private extractOriginalLabels; run(): Promise<AnyJson>; static promptCustomLabels(): Promise<any>; static promptLwcComponent(): Promise<any>; static promptExtractionMethod(): Promise<{ type: any; values: any; }>; }