salesforce-alm
Version:
This package contains tools, and APIs, for an improved salesforce.com developer experience.
27 lines (26 loc) • 609 B
TypeScript
import { JsonMap } from '@salesforce/ts-types';
/**
* SFDX command parameters when creating a community
*/
export declare type CommunityCreateParams = {
/**
* name of the community to create
*/
name: string;
/**
* template name to be used to create a community
*/
templateName: string;
/**
* url path prefix of the community.
*/
urlPathPrefix: string;
/**
* the description for the community
*/
description: any;
/**
* template parameters for the template used to create the community
*/
templateParams?: JsonMap;
};