salesforce-alm
Version:
This package contains tools, and APIs, for an improved salesforce.com developer experience.
14 lines (13 loc) • 630 B
TypeScript
import { SfdxCommand } from '@salesforce/command';
import { CommunityTemplatesListResponse } from '../../../../lib/community/defs/CommunityTemplatesListResponse';
/**
* A command to fetch available community templates a community. This is just an sfdx wrapper around
* the get available community templates connect endpoint
*/
export declare class CommunityListTemplatesCommand extends SfdxCommand {
static readonly requiresUsername = true;
static readonly help: string;
static readonly description: string;
static readonly longDescription: string;
run(): Promise<CommunityTemplatesListResponse | Error>;
}