salesforce-alm
Version:
This package contains tools, and APIs, for an improved salesforce.com developer experience.
17 lines (16 loc) • 639 B
TypeScript
import { DecompositionConfig, DecomposedSubtypeConfig } from './decompositionConfig';
/**
* Config for ExperienceBundle. Uses nonDecomposed strategy except for content strategy
*/
export declare class ExperienceBundleDecompositionStrategyConfig implements DecompositionConfig {
metadataName: string;
isGlobal: boolean;
isEmptyContainer: boolean;
useSparseComposition: boolean;
decompositions: DecomposedSubtypeConfig[];
strategy: string;
workspaceStrategy: string;
commitStrategy: string;
contentStrategy: string;
constructor(metadataName: string, isGlobal: boolean, isEmptyContainer: boolean);
}