sfdx-experiences-plugin
Version:
SFDX plugin to manage ExperienceBundle metadata
21 lines (20 loc) • 672 B
TypeScript
import { flags, SfdxCommand } from '@salesforce/command';
/**
* Command which copies configuration from one ExperienceBundle to another.
*/
export default class ExperiencesConfigCopy extends SfdxCommand {
static description: string;
static examples: string[];
static args: {
name: string;
required: boolean;
description: string;
}[];
protected static flagsConfig: {
config: flags.Discriminated<flags.Array<string>>;
};
protected static requiresUsername: boolean;
protected static supportsDevhubUsername: boolean;
protected static requiresProject: boolean;
run(): Promise<{}>;
}