sfdx-experiences-plugin
Version:
SFDX plugin to manage ExperienceBundle metadata
11 lines (10 loc) • 464 B
TypeScript
import AppPageConfig from './app-page-config';
import { AppPageType } from './app-page-type';
/**
* Returns the app page configuration of the given type from the given bundle path.
*
* @param {string} bundlePath Path to the bundle.
* @param {AppPageType} type Type of the app page.
* @returns {AppPageConfig} App page configuration from the bundle.
*/
export default function getAppPageConfig(bundlePath: string, type: AppPageType): AppPageConfig;