UNPKG

dce-dev-wizard

Version:

Wizard for managing development apps at Harvard DCE.

12 lines (11 loc) 349 B
import Deployment from '../types/Deployment'; /** * Get the deployment configuration of an app * @author Gabe Abrams * @param deployment the deployment entry to check * @returns parsed JSON of the deployment config */ declare const getDeploymentConfig: (deployment: Deployment) => { [k: string]: any; }; export default getDeploymentConfig;