@contentstack/cli-cm-bootstrap
Version:
Bootstrap contentstack apps
17 lines (16 loc) • 415 B
TypeScript
export interface Configuration {
starterApps: Array<any>;
sampleApps: any;
appLevelConfig: any;
}
export interface AppConfig {
source: string;
stack: string;
private?: boolean;
branch?: string;
appConfigKey?: string;
master_locale?: string;
}
declare const config: Configuration;
export default config;
export declare function getAppLevelConfigByName(appConfigKey: string): any;