salesforce-alm
Version:
This package contains tools, and APIs, for an improved salesforce.com developer experience.
18 lines (17 loc) • 349 B
TypeScript
/**
* SFDX command output when creating a community
*/
export declare type CommunityCreateResponse = {
/**
* output message
*/
message: string;
/**
* name of the community
*/
name: string;
/**
* the next actions that user can do to check, if community is created or not.
*/
action: string;
};