@salesforce/acu-pack
Version:
SFDX CLI Extensions
13 lines (12 loc) • 468 B
TypeScript
import { flags } from '@salesforce/command';
import { CommandBase } from '../../../../lib/command-base';
export default class ProfileRetrieve extends CommandBase {
static description: string;
static examples: string[];
protected static flagsConfig: {
names: flags.Discriminated<flags.Array<string>>;
};
protected static requiresUsername: boolean;
protected static requiresProject: boolean;
protected runInternal(): Promise<void>;
}